blob: bc4382379b3774878452c22aa0a61567172c0458 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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
|