home *** CD-ROM | disk | FTP | other *** search
- /*************************************************************************
- * SOLAR.H
- * (c) 1992 STAR DIVISION
- *************************************************************************/
-
- #ifndef _SOLAR_H
- #define _SOLAR_H
-
- #ifndef TRUE
- #define TRUE 1
- #endif
- #ifndef FALSE
- #define FALSE 0
- #endif
-
- #undef NULL
- #define NULL 0
-
- #ifndef min
- #define min(a,b) (((a) < (b)) ? (a) : (b))
- #endif
-
- #ifndef max
- #define max(a,b) (((a) > (b)) ? (a) : (b))
- #endif
-
- typedef unsigned char BOOL;
- typedef unsigned char BYTE;
- typedef unsigned short USHORT;
- typedef unsigned long ULONG;
-
- #endif
-