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

@ -46,7 +46,7 @@ int
image_get_jpeg_resolution(const char * path, int * width, int * height);
image_s *
image_new_from_jpeg(const char * path, int is_file, const char * ptr, int size, int scale, int resize);
image_new_from_jpeg(const char *path, int is_file, const uint8_t *ptr, int size, int scale, int resize);
image_s *
image_resize(image_s * src_image, int32_t width, int32_t height);