Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 18th, 2010 | Syntax: None | Size: 0.18 KB | Hits: 86 | Expires: Never
Copy text to clipboard
  1. struct bitmap {
  2.         int width;
  3.         int height;
  4.         uint8_t *pixdata;
  5.         bool opaque;
  6.  
  7.         /* The following two are only used for cursors */
  8.         int hot_x;
  9.         int hot_y;
  10. };