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 01e59c9..f79c2de 100644
--- a/core/plugin.h
+++ b/core/plugin.h
@@ -6,6 +6,7 @@
typedef PLUGININFO * (__cdecl * SetPluginInfo) ();
typedef int (__cdecl * Load) (PLUGINLINK *link);
+typedef int (__cdecl * OnModulesLoaded) ();
class plugin
{
@@ -14,6 +15,7 @@ public:
{
SetPluginInfo info;
Load load;
+ OnModulesLoaded loaded;
};
const HMODULE getHmodule();
const exported_funcs_s getFuncs();