summaryrefslogtreecommitdiffstats
path: root/matchblox/bitmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'matchblox/bitmap.h')
-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