#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