picodrive/platform/common/readpng.h
notaz 7a87643e07 error checking for png
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@451 be3aeb3a-fb24-0410-a615-afba39da0efa
2008-05-21 19:05:55 +00:00

19 lines
248 B
C

typedef enum
{
READPNG_BG = 1,
READPNG_FONT,
READPNG_SELECTOR,
READPNG_320_24,
READPNG_480_24
}
readpng_what;
#ifdef __cplusplus
extern "C" {
#endif
int readpng(void *dest, const char *fname, readpng_what what);
#ifdef __cplusplus
}
#endif