diff options
Diffstat (limited to 'core/modules.h')
-rw-r--r-- | core/modules.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/core/modules.h b/core/modules.h index 5ba7a11..2e843a4 100644 --- a/core/modules.h +++ b/core/modules.h @@ -14,7 +14,14 @@ public: load Load; on_modules_loaded OnModulesLoaded; unload Unload; - set_plugin_info SetPluginInfo; + set_plugin_info SetPluginInfo;
+ exported_functions_s()
+ {
+ Load =NULL;
+ OnModulesLoaded = NULL;
+ Unload = NULL;
+ SetPluginInfo = NULL;
+ }
}; ACE_DLL *get_plugin(); void set_plugin(); |