Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/azatoth/minidlna.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sql.h
diff options
context:
space:
mode:
authorJustin Maggard <jmaggard@users.sourceforge.net>2009-01-30 11:50:08 +0300
committerJustin Maggard <jmaggard@users.sourceforge.net>2009-01-30 11:50:08 +0300
commit35c6d6c6c6f5cfadb1adb6fce1b0d0149694a242 (patch)
treeed015d06e25dcb684ec97b1b52715346f621778b /sql.h
parent56c6b1699166703b16fced27f5bb2f98de90f93a (diff)
* Add some conditional statements to work with more ffmpeg library versions.
* Fix a crash bug when generating a friendly name if the hostname does not contain a dot. * Implement folder browsing by media type. * Add initial DLNA-compliant music album art support. (Using a <=160x160 cover.jpg, or folder.jpg, etc)
Diffstat (limited to 'sql.h')
-rw-r--r--sql.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql.h b/sql.h
index 7e15511..fc57610 100644
--- a/sql.h
+++ b/sql.h
@@ -16,6 +16,6 @@ int
sql_exec(sqlite3 * db, const char * sql);
int
-sql_get_table(sqlite3 *db, const char *zSql, char ***pazResult, int *pnRow, int *pnColumn, char **pzErrmsg);
+sql_get_table(sqlite3 *db, const char *zSql, char ***pazResult, int *pnRow, int *pnColumn);
#endif