diff options
Diffstat (limited to 'NorthstarDedicatedTest/pch.h')
-rw-r--r-- | NorthstarDedicatedTest/pch.h | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/NorthstarDedicatedTest/pch.h b/NorthstarDedicatedTest/pch.h index 1955071c..2c05938d 100644 --- a/NorthstarDedicatedTest/pch.h +++ b/NorthstarDedicatedTest/pch.h @@ -8,6 +8,14 @@ #define _WINSOCK_DEPRECATED_NO_WARNINGS // temp because i'm very lazy and want to use inet_addr, remove later #define RAPIDJSON_HAS_STDSTRING 1 +#ifndef MIN +#define MIN(a, b) (((a) < (b)) ? (a) : (b)) +#endif + +#ifndef MAX +#define MAX(a, b) (((a) > (b)) ? (a) : (b)) +#endif + // httplib ssl // add headers that you want to pre-compile here @@ -15,10 +23,17 @@ #include <Windows.h> #include <Psapi.h> -#include <set> -#include <map> +#include "version.h" +#include <comdef.h> #include <filesystem> +#include <iostream> +#include <fstream> #include <sstream> +#include <cstring> +#include <regex> +#include <thread> +#include <map> +#include <set> #include "logging.h" #include "include/MinHook.h" |