summaryrefslogtreecommitdiffstats
path: root/matchblox/bitmap.h
diff options
context:
space:
mode:
authorOliver Schinagl <oliver@schinagl.nl>2008-05-14 11:56:32 (GMT)
committerOliver Schinagl <oliver@schinagl.nl>2008-05-14 11:56:32 (GMT)
commitaee762191d706d03d5e1a42bf98415466f584bda (patch)
tree6e0f14bfe36a6d57736f804802b156a979424fa4 /matchblox/bitmap.h
parentd4d35970d88edccdd963e53ea3e11f702e1e2bab (diff)
download2iv55-aee762191d706d03d5e1a42bf98415466f584bda.zip
2iv55-aee762191d706d03d5e1a42bf98415466f584bda.tar.gz
2iv55-aee762191d706d03d5e1a42bf98415466f584bda.tar.bz2
moved stuff around
Diffstat (limited to '')
-rw-r--r--matchblox/bitmap.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/matchblox/bitmap.h b/matchblox/bitmap.h
deleted file mode 100644
index 5aa9be6..0000000
--- a/matchblox/bitmap.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef _CBITMAP_H
-#define _CBITMAP_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-
-struct BitmapStruct {
- int m_iImageId;
- int m_iWidth;
- int m_iHeight;
-};
-
-struct BitmapStruct BitmapLoad(char *filename);
-void BitmapRender(int f_iXPos, int f_iYPos, int f_iWidth, int f_iHeight, int f_iImageId);
-void BitmapConvertWidth(struct BitmapStruct *f_sImage, double f_dHeight);
-
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif