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

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

struct ImageStruct BitmapLoad(char *filename);

#endif