27 lines
448 B
C
27 lines
448 B
C
// MFTypes.h
|
|
// Guy Simmons, 6th October 1996.
|
|
|
|
// Type definitions for 'Mucky Foot' Libraries.
|
|
|
|
|
|
#ifndef _MF_TYPES_H_
|
|
#define _MF_TYPES_H_
|
|
|
|
#define TRUE 1
|
|
#define FALSE 0
|
|
|
|
#if defined(_MF_DOSX)
|
|
typedef unsigned long BOOL;
|
|
#endif
|
|
|
|
typedef unsigned char UBYTE;
|
|
typedef signed char SBYTE;
|
|
typedef char CBYTE;
|
|
typedef unsigned short UWORD;
|
|
typedef signed short SWORD;
|
|
typedef unsigned long ULONG;
|
|
typedef signed long SLONG;
|
|
|
|
|
|
#endif
|