home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cons-010.zip / Console / src / common / stype.h < prev    next >
C/C++ Source or Header  |  1997-05-14  |  377b  |  30 lines

  1. #ifndef __STYPE_H__
  2. #define __STYPE_H__
  3.  
  4. #ifndef ulong
  5. typedef unsigned long  ulong;
  6. #endif
  7.  
  8. #ifndef uint
  9. typedef unsigned int   uint;
  10. #endif
  11.  
  12. #ifndef uchar
  13. typedef unsigned char  uchar;
  14. #endif
  15.  
  16. #ifndef ushort
  17. typedef unsigned short ushort;
  18. #endif
  19.  
  20. #ifndef boolean
  21. typedef char           boolean;
  22. #endif
  23.  
  24. #ifndef TRUE
  25. #define TRUE  1
  26. #define FALSE 0
  27. #endif
  28.  
  29. #endif __STYPE_H__
  30.