home *** CD-ROM | disk | FTP | other *** search
-
- /*
- * global.h
- * Copyright © 1992 Niklas Röjemo
- */
-
- #ifndef _global_h
- #define _global_h
-
-
- typedef unsigned int WORD;
- typedef double FLOAT;
-
- #ifndef BOOL
- #define BOOL int
- #endif
-
- #define TRUE 1
- #define FALSE 0
-
- #ifndef NULL
- #define NULL 0
- #endif
-
-
- #endif
-