home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Spiele Shareware / os2games.iso / os2games / addons / gi / c / inc / std.h < prev   
Encoding:
C/C++ Source or Header  |  1993-11-14  |  1.4 KB  |  41 lines

  1. /*--------------------------------------------------------------------------*/
  2. /*                                                                          */
  3. /*   Main-Module   : -                                                      */
  4. /*                                                                          */
  5. /*   Version       : V1.00.0                                                */
  6. /*                                                                          */
  7. /*   Date          : 11.02.91                                               */
  8. /*                                                                          */
  9. /*   Written       : MH                                                     */
  10. /*                                                                          */
  11. /*   Dependency    : none                                                   */
  12. /*                                                                          */
  13. /*--------------------------------------------------------------------------*/
  14. /*
  15.     Revision History:
  16.     
  17.     31.07.92 RF        Bool ist unsigned short, damit mit OS/2 verträglich...
  18.     14.11.93 RF     BOOL ist nun wieder unsigned long ...    
  19. */
  20. #ifndef STD_INC
  21. #define STD_INC
  22.  
  23.  
  24. #ifndef TRUE
  25. #define TRUE 1
  26. #endif
  27. #ifndef FALSE
  28. #define FALSE 0
  29. #endif
  30. #ifndef BOOL
  31. #define BOOL unsigned long
  32. #endif
  33.  
  34. #ifndef NULL
  35. //#define NULL 0L
  36. #endif
  37.  
  38. #define forever for (;;)
  39.  
  40. #endif
  41.