diff --git a/Source/Common.h b/Source/Common.h index ffb8a7b..736d434 100644 --- a/Source/Common.h +++ b/Source/Common.h @@ -1,10 +1,5 @@ #pragma once -#define TRUE 1 -#define FALSE 0 - -typedef UINT8 BOOLEAN; - typedef signed char INT8; typedef signed short INT16; typedef signed int INT32; @@ -14,3 +9,8 @@ typedef unsigned char UINT8; typedef unsigned short UINT16; typedef unsigned int UINT32; typedef unsigned long long UINT64; + +#define TRUE 1 +#define FALSE 0 + +typedef UINT8 BOOLEAN; \ No newline at end of file