home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / starview / inc / solar.h next >
C/C++ Source or Header  |  1992-07-31  |  636b  |  33 lines

  1. /*************************************************************************
  2. *  SOLAR.H
  3. *  (c) 1992 STAR DIVISION
  4. *************************************************************************/
  5.  
  6. #ifndef _SOLAR_H
  7. #define _SOLAR_H
  8.  
  9. #ifndef TRUE
  10. #define  TRUE      1
  11. #endif
  12. #ifndef FALSE
  13. #define  FALSE     0
  14. #endif
  15.  
  16. #undef NULL
  17. #define  NULL      0
  18.  
  19. #ifndef min
  20. #define min(a,b)    (((a) < (b)) ? (a) : (b))
  21. #endif
  22.  
  23. #ifndef max
  24. #define max(a,b)    (((a) > (b)) ? (a) : (b))
  25. #endif
  26.  
  27. typedef unsigned char   BOOL;
  28. typedef unsigned char   BYTE;
  29. typedef unsigned short  USHORT;
  30. typedef unsigned long   ULONG;
  31.  
  32. #endif
  33.