home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BBS 1
/
BBS#1.iso
/
document
/
compress.arj
/
STYLE.H
< prev
next >
Wrap
Text File
|
1992-05-23
|
276b
|
16 lines
/* style.h
Useful types, macros, etc.
*/
typedef signed char BYTE;
typedef signed int WORD;
typedef signed long LONG;
typedef unsigned char UBYTE;
typedef unsigned int UWORD;
typedef unsigned long ULONG;
#define arraySize(array) (sizeof (array) / sizeof ((array) [0]) )