00001 #ifndef IMAGEDATA_CLASS_PROTECTION 00002 #define IMAGEDATA_CLASS_PROTECTION 00003 00004 typedef struct _ImageData { 00005 int dWidth; 00006 int dHeight; 00007 int dBpp; 00008 char cColorInfo; 00009 unsigned int dSize; 00010 unsigned int udTextureID; 00011 unsigned char *pcImageData; 00012 } ImageData_t; 00013 00014 00015 #endif