mirror of
https://github.com/RaySollium99/libpicofe.git
synced 2025-09-04 22:47:44 -04:00
move common files to root
This commit is contained in:
parent
f506842df2
commit
a86e9a3e58
25 changed files with 15 additions and 15 deletions
19
readpng.h
Normal file
19
readpng.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue