Browse Source

Treat booleans as bool

The engine should now be stable/clean enough to hanlde all bool types as
bool
pull/540/head
Anders Jenbo 6 years ago
parent
commit
2dcf237dd2
  1. 3
      SourceS/miniwin/misc.h

3
SourceS/miniwin/misc.h

@ -8,7 +8,6 @@ constexpr auto DVL_MAX_PATH = 260;
typedef char CHAR;
typedef uint16_t SHORT;
typedef int32_t LONG;
typedef uint8_t BOOLEAN;
typedef LONG *PLONG;
typedef uint32_t ULONG;
@ -20,7 +19,7 @@ typedef UCHAR *PUCHAR;
typedef char *PSZ;
typedef uint32_t DWORD;
typedef int BOOL, WINBOOL;
typedef bool BOOL, BOOLEAN, WINBOOL;
typedef unsigned char BYTE;
typedef unsigned short WORD;
typedef float FLOAT;

Loading…
Cancel
Save