summaryrefslogtreecommitdiffstats
path: root/menu_demo/bitmap.h
blob: f86526bc1e8c56a63f7beff7ece9835892efc7bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _CBITMAP_H
#define _CBITMAP_H

struct BitmapStruct {
  int m_iImageId;
  int m_iWidth;
  int m_iHeight;
};

struct BitmapStruct BitmapLoad(char *filename);
void BitmapConvertWidth(struct BitmapStruct *f_sImage, double f_dHeight);

#endif