mirror of
https://github.com/RaySollium99/libpicofe.git
synced 2025-09-05 14:57:46 -04:00

git-svn-id: file:///home/notaz/opt/svn/PicoDrive/platform@451 be3aeb3a-fb24-0410-a615-afba39da0efa
19 lines
248 B
C
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
|