summaryrefslogtreecommitdiffstats
path: root/MatchBloxEngine/MatchBloxEngine/bitmap.h
diff options
context:
space:
mode:
authorDennis Peeten <dpeeten@onsneteindhoven.nl>2008-05-06 08:20:40 (GMT)
committerDennis Peeten <dpeeten@onsneteindhoven.nl>2008-05-06 08:20:40 (GMT)
commit90e452660d230c7dd181ee7c3fbc5b5a117ed937 (patch)
treea666b6f565a125f21a44c23e39fbb7d3d5412d3a /MatchBloxEngine/MatchBloxEngine/bitmap.h
parent0a92d39e9e8774d96a6277f51890ee6eb345b40b (diff)
download2iv55-90e452660d230c7dd181ee7c3fbc5b5a117ed937.zip
2iv55-90e452660d230c7dd181ee7c3fbc5b5a117ed937.tar.gz
2iv55-90e452660d230c7dd181ee7c3fbc5b5a117ed937.tar.bz2
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