X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/641204dfbdb9fc870cdd2e7f9e3169a44693e7bf..f347aa92f1ff8fbf6335c5cc428e5bc9678a3a36:/projects/stargazer/store_loader.cpp diff --git a/projects/stargazer/store_loader.cpp b/projects/stargazer/store_loader.cpp index 56bd01ac..f012acd4 100644 --- a/projects/stargazer/store_loader.cpp +++ b/projects/stargazer/store_loader.cpp @@ -32,6 +32,8 @@ #include "store_loader.h" #include "common.h" +#include "store.h" +#include "settings.h" STORE_LOADER::STORE_LOADER(const SETTINGS & settings) : isLoaded(false), @@ -75,8 +77,8 @@ if (!handle) isLoaded = true; -BASE_STORE * (*GetStore)(); -GetStore = (BASE_STORE * (*)())dlsym(handle, "GetStore"); +STORE * (*GetStore)(); +GetStore = (STORE * (*)())dlsym(handle, "GetStore"); if (!GetStore) { errorStr = "GetStore not found.";