changeset 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 4b08e6a26564
children c9197a038e8e
files tools/libgfx.h
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
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
 {