Commit | Line | Data |
---|---|---|
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 |