]> git.draconx.ca Git - liblbx.git/blobdiff - src/image.h
lbxtool: Remove unused function parameters.
[liblbx.git] / src / image.h
index a1f2eff86c7df9af068c2ed5e2174993aa4f6263..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,13 +15,17 @@ 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);
 
 int lbximg_loadpalette(FILE *f, struct lbx_colour palette[static 256]);
 int lbximg_getpalette(LBX_IMG *img, struct lbx_colour palette[static 256]);