do full frame before menu for proper bg
[libpicofe.git] / common / readpng.h
... / ...
CommitLineData
1typedef enum
2{
3 READPNG_BG = 1,
4 READPNG_FONT,
5 READPNG_SELECTOR,
6 READPNG_320_24,
7 READPNG_480_24
8}
9readpng_what;
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15int readpng(void *dest, const char *fname, readpng_what what);
16
17#ifdef __cplusplus
18}
19#endif