]> git.stg.codes - stg.git/blobdiff - projects/stargazer/store_loader.cpp
Fix compilation issues for XML RPC interface
[stg.git] / projects / stargazer / store_loader.cpp
index 56bd01ac9bd2cdccdb0eafe3410abc559521084c..f012acd44a9c9809834f952b0398455ebf8c1d7e 100644 (file)
@@ -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.";