myGLUI.h
Upload User: kaiyuangj
Upload Date: 2022-01-01
Package Size: 35k
Code Size: 0k
Category:

Screen Saver

Development Platform:

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