Commit | Line | Data |
---|---|---|
13059a60 | 1 | typedef enum |
2 | { | |
3 | READPNG_BG = 1, | |
4 | READPNG_FONT, | |
ff63afa1 | 5 | READPNG_SELECTOR, |
f6eaae4f | 6 | READPNG_24, |
13059a60 | 7 | } |
8 | readpng_what; | |
9 | ||
ff63afa1 | 10 | #ifdef __cplusplus |
11 | extern "C" { | |
12 | #endif | |
13059a60 | 13 | |
f6eaae4f | 14 | int readpng(void *dest, const char *fname, readpng_what what, int w, int h); |
ff63afa1 | 15 | |
16 | #ifdef __cplusplus | |
17 | } | |
18 | #endif |