summaryrefslogtreecommitdiffstats
path: root/MatchBloxEngine/MatchBloxEngine/bitmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'MatchBloxEngine/MatchBloxEngine/bitmap.h')
-rw-r--r--MatchBloxEngine/MatchBloxEngine/bitmap.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/MatchBloxEngine/MatchBloxEngine/bitmap.h b/MatchBloxEngine/MatchBloxEngine/bitmap.h
new file mode 100644
index 0000000..f86526b
--- /dev/null
+++ b/MatchBloxEngine/MatchBloxEngine/bitmap.h
@@ -0,0 +1,13 @@
+#ifndef _CBITMAP_H
+#define _CBITMAP_H
+
+struct BitmapStruct {
+ int m_iImageId;
+ int m_iWidth;
+ int m_iHeight;
+};
+
+struct BitmapStruct BitmapLoad(char *filename);
+void BitmapConvertWidth(struct BitmapStruct *f_sImage, double f_dHeight);
+
+#endif