diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-11-07 22:06:19 +0000 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-11-07 22:06:19 +0000 |
commit | ae09e612ea33cb105a47996c4ae3bf8651119042 (patch) | |
tree | 91c46140555d3a85c0e6bceb1da3d1c031ae40be /NorthstarDedicatedTest/dllmain.cpp | |
parent | 916f4f53ad839d6f8e565e50bb310429a3e115f3 (diff) | |
download | NorthstarLauncher-ae09e612ea33cb105a47996c4ae3bf8651119042.tar.gz NorthstarLauncher-ae09e612ea33cb105a47996c4ae3bf8651119042.zip |
beginning work on new auth
Diffstat (limited to 'NorthstarDedicatedTest/dllmain.cpp')
-rw-r--r-- | NorthstarDedicatedTest/dllmain.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/NorthstarDedicatedTest/dllmain.cpp b/NorthstarDedicatedTest/dllmain.cpp index 2ecaf3db..dc1489e3 100644 --- a/NorthstarDedicatedTest/dllmain.cpp +++ b/NorthstarDedicatedTest/dllmain.cpp @@ -21,6 +21,7 @@ #include "playlist.h" #include "securitypatches.h" #include "miscserverscript.h" +#include "clientauthhooks.h" bool initialised = false; @@ -90,6 +91,7 @@ void InitialiseNorthstar() AddDllLoadCallback("client.dll", InitialiseScriptModMenu); AddDllLoadCallback("client.dll", InitialiseScriptServerBrowser); AddDllLoadCallback("localize.dll", InitialiseModLocalisation); + AddDllLoadCallback("engine.dll", InitialiseClientAuthHooks); } AddDllLoadCallback("server.dll", InitialiseServerSquirrel); |