From c87955b67fa2a5b86ce11dad05f3bcb927852e90 Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Fri, 9 Apr 2021 11:10:47 +0200 Subject: [PATCH] :fire: Remove fake bool types --- SourceS/miniwin/misc.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/SourceS/miniwin/misc.h b/SourceS/miniwin/misc.h index 18fdb01df..3965de30b 100644 --- a/SourceS/miniwin/misc.h +++ b/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 //