diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-08-05 03:17:54 +0100 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2021-08-05 03:17:54 +0100 |
commit | 02e422166baa12bbdc8af8806376cb2340fef896 (patch) | |
tree | 0ec856650684f0ee6644446d8e865ad1f6ec8859 /NorthstarDedicatedTest/dllmain.cpp | |
parent | bf176fe728400b93295118e8d256c346c8c52d41 (diff) | |
download | NorthstarLauncher-02e422166baa12bbdc8af8806376cb2340fef896.tar.gz NorthstarLauncher-02e422166baa12bbdc8af8806376cb2340fef896.zip |
add support for requesting server list from masterserver
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 9fd62885..691b6d53 100644 --- a/NorthstarDedicatedTest/dllmain.cpp +++ b/NorthstarDedicatedTest/dllmain.cpp @@ -12,6 +12,7 @@ #include "scriptmodmenu.h" #include "scriptserverbrowser.h" #include "keyvalues.h" +#include "masterserver.h" bool initialised = false; @@ -63,6 +64,7 @@ void InitialiseNorthstar() AddDllLoadCallback("server.dll", InitialiseServerSquirrel); AddDllLoadCallback("engine.dll", InitialiseServerAuthentication); + AddDllLoadCallback("engine.dll", InitialiseSharedMasterServer); AddDllLoadCallback("filesystem_stdio.dll", InitialiseFilesystem); AddDllLoadCallback("engine.dll", InitialiseKeyValues); |