ppsspp/image/png_load.h
2012-03-24 23:39:19 +01:00

12 lines
263 B
C

#ifndef _PNG_LOAD_H
#define _PNG_LOAD_H
// *image_data_ptr should be deleted with free()
// return value of 1 == success.
int pngLoad(const char *file, int *pwidth,
int *pheight, unsigned char **image_data_ptr, bool flip);
#endif // _PNG_LOAD_H