summaryrefslogtreecommitdiffstats
path: root/menu_demo/bitmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'menu_demo/bitmap.h')
-rw-r--r--menu_demo/bitmap.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/menu_demo/bitmap.h b/menu_demo/bitmap.h
index 9e68dae..dc300b5 100644
--- a/menu_demo/bitmap.h
+++ b/menu_demo/bitmap.h
@@ -1,6 +1,12 @@
#ifndef _CBITMAP_H
#define _CBITMAP_H
-void BitmapLoad(char *filename);
+struct ImageStruct {
+ int m_iImageId;
+ int m_iWidth;
+ int m_iHeight;
+};
+
+struct ImageStruct BitmapLoad(char *filename);
#endif