aboutsummaryrefslogtreecommitdiff
path: root/NorthstarDLL/pch.h
diff options
context:
space:
mode:
authorJack <66967891+ASpoonPlaysGames@users.noreply.github.com>2023-12-27 00:32:01 +0000
committerGitHub <noreply@github.com>2023-12-27 01:32:01 +0100
commitf5ab6fb5e8be7b73e6003d4145081d5e0c0ce287 (patch)
tree90f2c6a4885dbd181799e2325cf33588697674e1 /NorthstarDLL/pch.h
parentbb8ed59f6891b1196c5f5bbe7346cd171c8215fa (diff)
downloadNorthstarLauncher-f5ab6fb5e8be7b73e6003d4145081d5e0c0ce287.tar.gz
NorthstarLauncher-f5ab6fb5e8be7b73e6003d4145081d5e0c0ce287.zip
Folder restructuring from primedev (#624)v1.21.2-rc3v1.21.2
Copies of over the primedev folder structure for easier cherry-picking of further changes Co-authored-by: F1F7Y <filip.bartos07@proton.me>
Diffstat (limited to 'NorthstarDLL/pch.h')
-rw-r--r--NorthstarDLL/pch.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/NorthstarDLL/pch.h b/NorthstarDLL/pch.h
deleted file mode 100644
index b9ba0e08..00000000
--- a/NorthstarDLL/pch.h
+++ /dev/null
@@ -1,44 +0,0 @@
-#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
-
-// add headers that you want to pre-compile here
-#include "core/memalloc.h"
-
-#include <windows.h>
-#include <psapi.h>
-#include <set>
-#include <map>
-#include <filesystem>
-#include <sstream>
-
-namespace fs = std::filesystem;
-
-#define EXPORT extern "C" __declspec(dllexport)
-
-typedef void (*callable)();
-typedef void (*callable_v)(void* v);
-
-// clang-format off
-#define assert_msg(exp, msg) assert((exp, msg))
-//clang-format on
-
-#include "core/macros.h"
-
-#include "core/structs.h"
-#include "core/math/color.h"
-
-#include "spdlog/spdlog.h"
-#include "logging/logging.h"
-#include "MinHook.h"
-#include "curl/curl.h"
-#include "core/hooks.h"
-#include "core/memory.h"
-
-#endif