summaryrefslogtreecommitdiff
path: root/core/plugin.h
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss123next@list.ru>2010-08-02 10:04:03 +0300
committerGluzskiy Alexandr <sss123next@list.ru>2010-08-02 10:04:03 +0300
commit8ac279eaac75a07ae7d303ed4dc6dd3df98425c1 (patch)
treee2a5b79feecc920b9e7fba82bcdefeea53d198a5 /core/plugin.h
parentf7b3a636db0db493a70e8277fc8a444d3ac7f7e5 (diff)
modified: core/main.cpp
modified: core/plugin.h modified: modules/example/main.cpp
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();