menu: setup colors for file browser
[pcsx_rearmed.git] / frontend / common / readpng.h
CommitLineData
698517be 1typedef enum
2{
3 READPNG_BG = 1,
4 READPNG_FONT,
5 READPNG_SELECTOR,
6 READPNG_24,
7}
8readpng_what;
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14int readpng(void *dest, const char *fname, readpng_what what, int w, int h);
15
16#ifdef __cplusplus
17}
18#endif