mirror of
https://github.com/isledecomp/isle-portable.git
synced 2025-05-18 17:10:33 -04:00
21 lines
259 B
C
21 lines
259 B
C
|
#ifndef TYPES_H
|
||
|
#define TYPES_H
|
||
|
|
||
|
// Defining substitutions for definitions usually found in Windows headers
|
||
|
|
||
|
#define BOOL int32_t
|
||
|
|
||
|
#ifndef TRUE
|
||
|
#define TRUE 1
|
||
|
#endif
|
||
|
|
||
|
#ifndef FALSE
|
||
|
#define FALSE 0
|
||
|
#endif
|
||
|
|
||
|
#ifndef NULL
|
||
|
#define NULL 0
|
||
|
#endif
|
||
|
|
||
|
#endif // TYPES_H
|