aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDedicatedTest/pch.h
blob: c54fedf8796d4ed28ff8e6bb18ce46097eb35903 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef PCH_H
#define PCH_H

#define WIN32_LEAN_AND_MEAN
#define _CRT_SECURE_NO_WARNINGS
#define RAPIDJSON_NOMEMBERITERATORCLASS // need this for rapidjson
#define NOMINMAX // this too
#define _WINSOCK_DEPRECATED_NO_WARNINGS // temp because i'm very lazy and want to use inet_addr, remove later 
#define RAPIDJSON_HAS_STDSTRING 1

// httplib ssl
#define CPPHTTPLIB_OPENSSL_SUPPORT
#define OPENSSL_API_COMPAT 0x1010100fL

// add headers that you want to pre-compile here
#include <Windows.h>
#include "logging.h"
#include "include/MinHook.h"
#include "spdlog/spdlog.h"
#include "hookutils.h"

#endif