diff options
Diffstat (limited to 'core/modules.h')
-rw-r--r-- | core/modules.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/modules.h b/core/modules.h index ca61aee..81d2c84 100644 --- a/core/modules.h +++ b/core/modules.h @@ -46,6 +46,8 @@ public: const PLUGININFO *get_plugininfo(); const exported_functions_s *get_exported_functions(); const int get_plugin_id(); + const std::list<int> get_event_list(); + int register_event(int); plugin(ACE_DLL *lib, PLUGININFO *info, exported_functions_s *funcs); ~plugin(); private: @@ -53,6 +55,7 @@ private: exported_functions_s *exported_funcs; PLUGININFO *plugininfo; int pluginid; + std::list<int> events; };
#endif // MODULE_H_INCLUDED
|