home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / GRAPHICS / GIFTOOL / GIF_CSRC.ZIP / STD.H < prev   
Encoding:
C/C++ Source or Header  |  1990-10-05  |  278 b   |  17 lines

  1. /* STD.H - My own standard header file...
  2.  */
  3.  
  4. #define LOCAL static
  5. #define IMPORT extern
  6.  
  7. #define FAST register
  8.  
  9. typedef short WORD;
  10. typedef unsigned short UWORD;
  11. typedef char TEXT;
  12. typedef unsigned char UTINY;
  13. typedef long LONG;
  14. typedef unsigned long ULONG;
  15. typedef int INT;
  16.  
  17.