mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-28 10:51:06 +00:00
12 lines
263 B
C
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
|