home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_C / RTEXP142.ZIP / RTEXP142.EXE / INCLUDE / BOOLEAN.H < prev    next >
C/C++ Source or Header  |  1994-03-30  |  658b  |  24 lines

  1. /* Copyright (c) 1994 All Rights Reserved
  2.  * The Real-Time Intelligent Systems Corporation
  3.  */
  4.  
  5. /**********************************************************************\
  6.   --> revision history <--
  7. 1 BOOLEAN.H 24-Feb-94,9:59:48,`MATT' Initial check-in of files
  8. 2 BOOLEAN.H 3-Mar-94,11:39:04,`MATT' Updated copyright notice.
  9.   --> revision history <--
  10. \**********************************************************************/
  11.  
  12. #ifndef _BOOLEAN_H
  13. # define _BOOLEAN_H
  14.  
  15.     /* The windows.h include file defines this type already... */
  16. #  ifndef __WINDOWS_H
  17. typedef short BOOL;
  18.  
  19. #   define FALSE   (0)
  20. #   define TRUE    (1)
  21. #  endif
  22.  
  23. #endif
  24.