summaryrefslogtreecommitdiff
path: root/core/plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/plugin.h')
-rw-r--r--core/plugin.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/plugin.h b/core/plugin.h
index 893b445..01e59c9 100644
--- a/core/plugin.h
+++ b/core/plugin.h
@@ -17,6 +17,7 @@ public:
};
const HMODULE getHmodule();
const exported_funcs_s getFuncs();
+ const PLUGININFO getPluginInfo();
int setHandle(const HMODULE &hMod);
int setName(const char *name);
const char *getName();
@@ -26,5 +27,6 @@ private:
HMODULE hModule;
char *szPluginName;
exported_funcs_s funcs;
+ PLUGININFO pluginInfo;
};
#endif