#include "store_loader.h"
#include "common.h"
+#include "store.h"
+#include "settings.h"
STORE_LOADER::STORE_LOADER(const SETTINGS & settings)
: isLoaded(false),
isLoaded = true;
-BASE_STORE * (*GetStore)();
-GetStore = (BASE_STORE * (*)())dlsym(handle, "GetStore");
+STORE * (*GetStore)();
+GetStore = (STORE * (*)())dlsym(handle, "GetStore");
if (!GetStore)
{
errorStr = "GetStore not found.";