mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
22 lines
302 B
C
22 lines
302 B
C
|
#ifndef MXTYPE_H
|
||
|
#define MXTYPE_H
|
||
|
|
||
|
typedef unsigned char MxU8;
|
||
|
typedef char MxS8;
|
||
|
typedef unsigned short MxU16;
|
||
|
typedef short MxS16;
|
||
|
typedef unsigned int MxU32;
|
||
|
typedef int MxS32;
|
||
|
|
||
|
typedef unsigned char MxBool;
|
||
|
|
||
|
#ifndef TRUE
|
||
|
#define TRUE 1
|
||
|
#endif
|
||
|
|
||
|
#ifndef FALSE
|
||
|
#define FALSE 0
|
||
|
#endif
|
||
|
|
||
|
#endif MXTYPE_H
|