* 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

@ -25,9 +25,9 @@
#define __ALBUMART_H__
void
update_if_album_art(const char * path);
update_if_album_art(const char *path);
sqlite_int64
find_album_art(const char * path, const char * image_data, int image_size);
int64_t
find_album_art(const char *path, const char *image_data, int image_size);
#endif