diff options
Diffstat (limited to 'core/modules.h')
-rw-r--r-- | core/modules.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/modules.h b/core/modules.h index d4a7929..9894894 100644 --- a/core/modules.h +++ b/core/modules.h @@ -16,13 +16,13 @@ public: unload Unload; set_plugin_info SetPluginInfo; }; - wxDynamicLibrary *get_plugin(); + ACE_DLL *get_plugin(); void set_plugin(); const exported_functions_s *get_exported_functions(); - plugin(wxDynamicLibrary *lib, PLUGININFO *info, exported_functions_s *funcs); + plugin(ACE_DLL *lib, PLUGININFO *info, exported_functions_s *funcs); ~plugin(); private: - wxDynamicLibrary *plug; + ACE_DLL *plug; exported_functions_s *exported_funcs; PLUGININFO *plugininfo; };
|