Browse Source

🔥 Remove fake bool types

pull/1267/head
Anders Jenbo 5 years ago
parent
commit
c87955b67f
  1. 9
      SourceS/miniwin/misc.h

9
SourceS/miniwin/misc.h

@ -4,12 +4,10 @@ namespace devilution {
typedef uint16_t SHORT;
typedef int32_t LONG;
typedef uint8_t BOOLEAN;
typedef unsigned char UCHAR;
typedef uint32_t DWORD;
typedef int BOOL;
typedef unsigned char BYTE;
typedef unsigned short WORD;
typedef DWORD *LPDWORD;
@ -51,13 +49,6 @@ bool TranslateMessage(const MSG *lpMsg);
void PushMessage(const MSG *lpMsg);
bool PostMessage(UINT Msg, WPARAM wParam, LPARAM lParam);
#ifndef TRUE
#define TRUE true
#endif
#ifndef false
#define FALSE false
#endif
//
// MSCVRT emulation
//

Loading…
Cancel
Save