summaryrefslogtreecommitdiffstats
path: root/menu_demo/bitmap.h
diff options
context:
space:
mode:
authorWilrik de Loose <wilrik@wilrik.nl>2008-04-25 09:41:19 (GMT)
committerWilrik de Loose <wilrik@wilrik.nl>2008-04-25 09:41:19 (GMT)
commitd7764fdd65c512a1661dcf7a6e6d4e7cbb7b25fc (patch)
tree3851cd43255a55b16b7c886e3d066f3092132726 /menu_demo/bitmap.h
parent2b53b94bdc1815fbc73f7ef0e5c2400f42a55508 (diff)
download2iv55-d7764fdd65c512a1661dcf7a6e6d4e7cbb7b25fc.zip
2iv55-d7764fdd65c512a1661dcf7a6e6d4e7cbb7b25fc.tar.gz
2iv55-d7764fdd65c512a1661dcf7a6e6d4e7cbb7b25fc.tar.bz2
Buttons fixed
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