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 >
Wrap
C/C++ Source or Header
|
1994-03-30
|
658b
|
24 lines
/* Copyright (c) 1994 All Rights Reserved
* The Real-Time Intelligent Systems Corporation
*/
/**********************************************************************\
--> revision history <--
1 BOOLEAN.H 24-Feb-94,9:59:48,`MATT' Initial check-in of files
2 BOOLEAN.H 3-Mar-94,11:39:04,`MATT' Updated copyright notice.
--> revision history <--
\**********************************************************************/
#ifndef _BOOLEAN_H
# define _BOOLEAN_H
/* The windows.h include file defines this type already... */
# ifndef __WINDOWS_H
typedef short BOOL;
# define FALSE (0)
# define TRUE (1)
# endif
#endif