home *** CD-ROM | disk | FTP | other *** search
/ PCMania 3 / PCM3.ISO / ARTICULOS / CREATIVIDAD / DEMOSCENE / EJEMPLO / types.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-04-17  |  601 b   |  21 lines

  1. #ifndef __TYPES
  2. #define __TYPES
  3. typedef unsigned char   UBYTE;
  4. typedef signed char     SBYTE;
  5. typedef unsigned short  UWORD;
  6. typedef short           SWORD;
  7. typedef unsigned int    UDWORD;
  8. typedef int             SDWORD;
  9. typedef void            VOID;
  10. typedef SDWORD          BOOL;
  11. enum                    boolean {FALSE,TRUE};
  12. typedef unsigned char   ubyte;
  13. typedef unsigned char   byte;
  14. typedef signed char     sbyte;
  15. typedef unsigned short  uword;
  16. typedef short           sword;
  17. typedef unsigned int    udword;
  18. typedef int             sdword;
  19. typedef SDWORD          bool;
  20. #endif
  21.