diff options
Diffstat (limited to 'NorthstarDLL/pch.h')
-rw-r--r-- | NorthstarDLL/pch.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/NorthstarDLL/pch.h b/NorthstarDLL/pch.h index 55ebba8b..9ad8378c 100644 --- a/NorthstarDLL/pch.h +++ b/NorthstarDLL/pch.h @@ -20,6 +20,11 @@ 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 @@ -28,6 +33,7 @@ namespace fs = std::filesystem; #include "core/structs.h" #include "core/math/color.h" + #include "spdlog/spdlog.h" #include "logging/logging.h" #include "MinHook.h" |