diff tools/libgfx.h @ 1809:a20655e40e6c

Move ILBM function declarations to position that better reflects their location in the code.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 21 Jun 2018 11:14:26 +0300
parents 0562dd55a1f6
children 1af79412f249
line wrap: on
line diff
--- a/tools/libgfx.h	Thu Jun 21 11:13:19 2018 +0300
+++ b/tools/libgfx.h	Thu Jun 21 11:14:26 2018 +0300
@@ -137,14 +137,14 @@
 int dmWritePNGImage(const char *filename, const DMImage *img, const DMImageConvSpec *spec);
 #endif
 
-int dmReadILBMImageFILE(DMResource *fp, DMImage **pimg);
-int dmReadILBMImage(const char *filename, DMImage **pimg);
-
 int dmWritePCXImageFILE(DMResource *fp, const DMImage *img, const DMImageConvSpec *spec);
 int dmWritePCXImage(const char *filename, const DMImage *img, const DMImageConvSpec *spec);
 int dmReadPCXImageFILE(DMResource *fp, DMImage **pimg);
 int dmReadPCXImage(const char *filename, DMImage **pimg);
 
+int dmReadILBMImageFILE(DMResource *fp, DMImage **pimg);
+int dmReadILBMImage(const char *filename, DMImage **pimg);
+
 
 typedef struct _DMBitStreamContext
 {