diff options
Diffstat (limited to 'NorthstarDedicatedTest/dllmain.cpp')
-rw-r--r-- | NorthstarDedicatedTest/dllmain.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/NorthstarDedicatedTest/dllmain.cpp b/NorthstarDedicatedTest/dllmain.cpp index edf4161a..e81d70c9 100644 --- a/NorthstarDedicatedTest/dllmain.cpp +++ b/NorthstarDedicatedTest/dllmain.cpp @@ -40,10 +40,9 @@ #include "scriptservertoclientstringcommand.h" #include "plugin_abi.h" #include "plugins.h" +#include "host_state.h" +#include "rcon_shared.h" #include "clientvideooverrides.h" -#include <string.h> -#include "pch.h" - #include "rapidjson/document.h" #include "rapidjson/stringbuffer.h" #include "rapidjson/writer.h" @@ -254,6 +253,9 @@ bool InitialiseNorthstar() AddDllLoadCallback("server.dll", InitialiseMiscServerFixes); AddDllLoadCallback("server.dll", InitialiseBuildAINFileHooks); + AddDllLoadCallback("engine.dll", InitializeCHostStateHooks); + AddDllLoadCallback("engine.dll", InitializeRconSystems); + AddDllLoadCallback("engine.dll", InitialisePlaylistHooks); AddDllLoadCallback("filesystem_stdio.dll", InitialiseFilesystem); |