]> git.draconx.ca Git - liblbx.git/blobdiff - src/image.h
Add the tools.h that should have been included a while ago.
[liblbx.git] / src / image.h
index e2d18aa9141ed10265716949e7e5dcc300f9816b..7f70b434550cd6c589d5c6e886bf4e95de862017 100644 (file)
@@ -11,11 +11,21 @@ struct lbx_colour {
        unsigned char blue;
 };
 
+struct lbx_imginfo {
+       unsigned int width, height;
+       unsigned int nframes, loopstart;
+       int palettesz;
+       int looping;
+};
+
 LBX_IMG *lbximg_fopen(FILE *f);
 void     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]);
 
+void lbximg_getinfo(LBX_IMG *img, struct lbx_imginfo *info);
+
 #endif