Pico fixes
[libpicofe.git] / common / readpng.h
1 typedef enum
2 {
3         READPNG_BG = 1,
4         READPNG_FONT,
5         READPNG_SELECTOR
6 }
7 readpng_what;
8
9 void readpng(void *dest, const char *fname, readpng_what what);
10