home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: C/C++
/
Resource for Source - C-C++.iso
/
misc_src
/
knowhow4
/
simple.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-11-01
|
308 b
|
17 lines
#ifndef __SIMPLE_H_
#define __SIMPLE_H_
// File contains some simplifications.
typedef unsigned char uchar;
typedef unsigned int uint;
typedef unsigned long ulong;
typedef int bool;
typedef int BOOL;
#define TRUE 1
#define FALSE 0
#define ON TRUE
#define OFF FALSE
#endif __SIMPLE_H_