isle-portable/util/platform.h
2024-05-30 16:06:46 -04:00

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