home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / chip_20022115.iso / amiga / chipgame / scummvm_aga.lha / ScummVM_AGA / src / sdl.h < prev    next >
Encoding:
Text File  |  2002-01-05  |  230 b   |  12 lines

  1. typedef unsigned char    Uint8;
  2. typedef signed char    Sint8;
  3. typedef unsigned short    Uint16;
  4. typedef signed short    Sint16;
  5. typedef unsigned int    Uint32;
  6. typedef signed int    Sint32;
  7.  
  8. typedef struct {
  9.     Sint16 x, y;
  10.     Uint16 w, h;
  11. } SDL_Rect;
  12.