summaryrefslogtreecommitdiff
path: root/core/modules.h
diff options
context:
space:
mode:
authorGluzskiy Alexandr <sss123next@list.ru>2010-10-19 05:17:48 +0300
committerGluzskiy Alexandr <sss123next@list.ru>2010-10-19 05:17:48 +0300
commitb50a786c2758a34eff01a491ef103bd5a053ba90 (patch)
treeecc804a103e8154cf29765d2bfa28be99ef5e031 /core/modules.h
parenta5b11748c6b322a245b2d2352979bf199aa31afd (diff)
do not use wxwidgets in core, boost and ace choosen for core development
Diffstat (limited to 'core/modules.h')
-rw-r--r--core/modules.h6
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;
};