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