mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-04 05:05:13 +00:00
11 lines
285 B
C
11 lines
285 B
C
#define PNG_WHOLETHING 0
|
|
#define PNG_ODDLINES 1
|
|
#define PNG_EVENLINES 2
|
|
#define PNG_RAW 3
|
|
|
|
int loadpng(char *filename, unsigned char **image_ptr, int *xsize, int *ysize,
|
|
int png_type);
|
|
int loadpng80(char *filename, unsigned char **image_ptr, int *xsize, int *ysize,
|
|
int png_type);
|
|
|