]> git.draconx.ca Git - liblbx.git/blobdiff - src/image.h
lbximg: Properly convert lbx_colour to png_color.
[liblbx.git] / src / image.h
index 3ef95ab95f821430dec4d028634b2a3f947d84ae..5369e0aafbed4affb7ba4e0319664a0b3ee98f60 100644 (file)
@@ -4,6 +4,7 @@
 #include <stdio.h>
 
 typedef struct lbx_image LBX_IMG;
+struct lbx_file_ops;
 
 struct lbx_colour {
        unsigned char red;
@@ -14,12 +15,15 @@ struct lbx_colour {
 struct lbx_imginfo {
        unsigned int width, height;
        unsigned int nframes, loopstart;
-       int haspalette;
+       int palettesz;
        int looping;
 };
 
+LBX_IMG *lbximg_open(void *f, const struct lbx_file_ops *fops,
+                     int (*destructor)(void *));
 LBX_IMG *lbximg_fopen(FILE *f);
-void     lbximg_close(LBX_IMG *img);
+int      lbximg_close(LBX_IMG *img);
+
 unsigned char **lbximg_getframe(LBX_IMG *img, int frame);
 unsigned char **lbximg_getmask(LBX_IMG *img);