diff options
Diffstat (limited to 'NetConsole/pch.h')
-rw-r--r-- | NetConsole/pch.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/NetConsole/pch.h b/NetConsole/pch.h new file mode 100644 index 00000000..bc438237 --- /dev/null +++ b/NetConsole/pch.h @@ -0,0 +1,32 @@ +#ifndef PCH_H +#define PCH_H + +#define WIN32_LEAN_AND_MEAN +#define _CRT_SECURE_NO_WARNINGS + +#ifndef MIN +#define MIN(a, b) (((a) < (b)) ? (a) : (b)) +#endif + +#ifndef MAX +#define MAX(a, b) (((a) > (b)) ? (a) : (b)) +#endif + +// add headers that you want to pre-compile here + +#include <Windows.h> +#include <WinSock2.h> +#include <Ws2tcpip.h> +#include <Psapi.h> +#include <comdef.h> +#include <filesystem> +#include <iostream> +#include <fstream> +#include <sstream> +#include <cstring> +#include <regex> +#include <thread> +#include <set> + +#include "spdlog/spdlog.h" +#endif |