[go: up one dir, main page]

Menu

[7d60eb]: / src / gif.h  Maximize  Restore  History

Download this file

8 lines (5 with data), 288 Bytes

1
2
3
4
5
6
7
#ifndef gif_h
#define gif_h
unsigned char *loadgif(char *fname, int *width, int *height, unsigned char *pal, int *transparent);
int savegif(char *fname, unsigned char *data, int width, int height, unsigned char *pal, int palsize, int transparent, int important, int interlaced);
#endif