summaryrefslogtreecommitdiffstats
path: root/Gui/bitmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'Gui/bitmap.h')
-rw-r--r--Gui/bitmap.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/Gui/bitmap.h b/Gui/bitmap.h
new file mode 100644
index 0000000000..c9d18b123c
--- /dev/null
+++ b/Gui/bitmap.h
@@ -0,0 +1,21 @@
+
+#ifndef __MYSAMPLE
+#define __MYSAMPLE
+
+typedef struct _txSample
+{
+ unsigned int Width;
+ unsigned int Height;
+ unsigned int BPP;
+ unsigned long ImageSize;
+ char * Image;
+} txSample;
+
+#include "tga/tga.h"
+#include "bmp/bmp.h"
+#include "png/png.h"
+
+extern int bpRead( char * fname, txSample * bf );
+extern int conv24to32( txSample * bf );
+
+#endif \ No newline at end of file