myGLUI.h
上传用户:kaiyuangj
上传日期:2022-01-01
资源大小:35k
文件大小:0k
源码类别:

屏幕保护

开发平台:

Visual C++

  1. #ifndef myGLUI_h
  2. #define myGLUI_h
  3. /* Image type - contains height, width, and data */
  4. struct Image {
  5.     unsigned long sizeX;
  6.     unsigned long sizeY;
  7.     char *data;
  8. };
  9. #endif