summaryrefslogtreecommitdiff
path: root/core/modules.h
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss123next@list.ru>2011-03-17 21:08:25 +0200
committerGluzskiy Alexandr <sss123next@list.ru>2011-03-17 21:08:25 +0200
commit4c917f2e2a43ea50cd287dd322dda9d08b213b7d (patch)
treec990c65226c78a2ee6595c05a3b2be36755d5b8f /core/modules.h
parentee695f119bbc7b3f1557ab01b7953de2ca03e00b (diff)
modified: api/ec_pluginapi.h
modified: api/ec_services.h modified: core/events.cpp modified: core/events.h modified: core/globals.h modified: core/main.cpp modified: core/modules.cpp modified: core/modules.h modified: plugins/example/main.cpp
Diffstat (limited to 'core/modules.h')
-rw-r--r--core/modules.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/modules.h b/core/modules.h
index 6cdd0f6..ca61aee 100644
--- a/core/modules.h
+++ b/core/modules.h
@@ -45,12 +45,14 @@ public:
// void set_plugin();
const PLUGININFO *get_plugininfo();
const exported_functions_s *get_exported_functions();
+ const int get_plugin_id();
plugin(ACE_DLL *lib, PLUGININFO *info, exported_functions_s *funcs);
~plugin();
private:
ACE_DLL *plug;
exported_functions_s *exported_funcs;
PLUGININFO *plugininfo;
+ int pluginid;
};
#endif // MODULE_H_INCLUDED