home *** CD-ROM | disk | FTP | other *** search
/ Vectronix 2 / VECTRONIX2.iso / FILES_07 / LATTIC_3.ZIP / HEADERS / PORTAB.H < prev    next >
C/C++ Source or Header  |  1989-11-29  |  505b  |  31 lines

  1. /*
  2.  * portab.h - various portability definitions
  3.  *
  4.  * Started 29/11/89 Alex G. Kiernan
  5.  *
  6.  * Copyright (c) 1989 HiSoft
  7.  */
  8.  
  9. #ifndef _PORTAB_H
  10. #define _PORTAB_H
  11.  
  12. #if defined(__PLAIN_CHAR_UNSIGNED)
  13. #define UCHARA 1
  14. #else
  15. #undef UCHARA
  16. #endif
  17.  
  18. typedef signed char BYTE;
  19. typedef unsigned char UBYTE;
  20. typedef signed short WORD;
  21. typedef unsigned short UWORD;
  22. typedef signed long LONG;
  23. typedef unsigned long ULONG;
  24.  
  25. typedef int BOOLEAN;
  26.  
  27. #define    TRUE    (1)
  28. #define    FALSE    (0)
  29.  
  30. #endif
  31.