mirror of
https://github.com/isledecomp/isle-portable.git
synced 2025-05-13 06:31:39 -04:00
20 lines
259 B
C
20 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
|