#ifndef H_IMAGEGIFC #define H_IMAGEGIFC #ifdef __cplusplus extern "C" { #endif /*** * IMAGE FILE WRITING FUNCTIONS */ /* Save an already-palettized GIF87a compressed image file. */ int WritePalGIF(const char *fname, unsigned char *data, int w, int h, unsigned char (*palette)[3], int npalette); /* Save a GIF87a compressed image file. */ int WriteGIF(const char *fname, unsigned char (*data)[3], int w, int h); #ifdef __cplusplus } #endif #endif