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.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/menu_demo/bitmap.h b/menu_demo/bitmap.h
index dc300b5..f86526b 100644
--- a/menu_demo/bitmap.h
+++ b/menu_demo/bitmap.h
@@ -1,12 +1,13 @@
#ifndef _CBITMAP_H
#define _CBITMAP_H
-struct ImageStruct {
+struct BitmapStruct {
int m_iImageId;
int m_iWidth;
int m_iHeight;
};
-struct ImageStruct BitmapLoad(char *filename);
+struct BitmapStruct BitmapLoad(char *filename);
+void BitmapConvertWidth(struct BitmapStruct *f_sImage, double f_dHeight);
#endif