move common files to root

This commit is contained in:
notaz 2012-09-08 21:30:31 +03:00 committed by Grazvydas Ignotas
parent f506842df2
commit a86e9a3e58
25 changed files with 15 additions and 15 deletions

19
readpng.h Normal file
View file

@ -0,0 +1,19 @@
typedef enum
{
READPNG_BG = 1,
READPNG_FONT,
READPNG_SELECTOR,
READPNG_24,
}
readpng_what;
#ifdef __cplusplus
extern "C" {
#endif
int readpng(void *dest, const char *fname, readpng_what what, int w, int h);
int writepng(const char *fname, unsigned short *src, int w, int h);
#ifdef __cplusplus
}
#endif