* Replace sqlite_int64 with int64_t in many places, to better allow for the possibility of other databases. (Thanks Douglas Carmichael)

This commit is contained in:
Justin Maggard
2012-06-29 23:14:27 +00:00
parent 2c7a3bfc06
commit 61fbce18ba
19 changed files with 151 additions and 138 deletions

View File

@ -80,24 +80,24 @@ typedef enum {
} ts_timestamp_t;
int
ends_with(const char * haystack, const char * needle);
ends_with(const char *haystack, const char *needle);
char *
modifyString(char * string, const char * before, const char * after, short like);
modifyString(char *string, const char *before, const char *after, short like);
void
check_for_captions(const char * path, sqlite_int64 detailID);
check_for_captions(const char *path, int64_t detailID);
sqlite_int64
GetFolderMetadata(const char * name, const char * path, const char * artist, const char * genre, sqlite_int64 album_art);
int64_t
GetFolderMetadata(const char *name, const char *path, const char *artist, const char *genre, int64_t album_art);
sqlite_int64
GetAudioMetadata(const char * path, char * name);
int64_t
GetAudioMetadata(const char *path, char *name);
sqlite_int64
GetImageMetadata(const char * path, char * name);
int64_t
GetImageMetadata(const char *path, char *name);
sqlite_int64
GetVideoMetadata(const char * path, char * name);
int64_t
GetVideoMetadata(const char *path, char *name);
#endif