Type data pointer variables as uint8_t.

This commit is contained in:
Justin Maggard
2014-04-25 14:30:38 -07:00
parent 381c4805e6
commit be5f4a50eb
8 changed files with 13 additions and 16 deletions

View File

@ -24,10 +24,7 @@
#ifndef __ALBUMART_H__
#define __ALBUMART_H__
void
update_if_album_art(const char *path);
int64_t
find_album_art(const char *path, const char *image_data, int image_size);
void update_if_album_art(const char *path);
int64_t find_album_art(const char *path, uint8_t *image_data, int image_size);
#endif