Icon.hh 262 B

12345678910111213141516171819
  1. #ifndef ICON_HH
  2. #define ICON_HH
  3. namespace openmsx {
  4. struct OpenMSX_Icon
  5. {
  6. unsigned width;
  7. unsigned height;
  8. unsigned bytes_per_pixel; /* 3:RGB, 4:RGBA */
  9. const char* pixel_data;
  10. };
  11. extern OpenMSX_Icon openMSX_icon;
  12. } // namespace openmsx
  13. #endif