diff options
author | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-26 01:41:39 +0000 |
---|---|---|
committer | cyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-26 01:41:39 +0000 |
commit | c5b9eaeda030638a6fbd59396f7ad61baaf70fad (patch) | |
tree | fd7fa9e2782d1e54c02fd999dbf5576c81af4376 /include/modules.h | |
parent | 90f6431603714f3c2abbe44550bca8824bb8bbe6 (diff) |
Various fixes for compiling under Windows.
Also updated ms_* modules to use std::vector Memo struct from earlier commit.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1797 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include/modules.h')
-rw-r--r-- | include/modules.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/modules.h b/include/modules.h index 524b23e1a..fc7451b49 100644 --- a/include/modules.h +++ b/include/modules.h @@ -150,7 +150,7 @@ struct ModuleLang_ { /** Every module in Anope is actually a class. */ -CoreExport class Module +class CoreExport Module { private: bool permanent; @@ -163,7 +163,7 @@ CoreExport class Module */ std::string filename; - void *handle; + ano_module_t handle; time_t created; std::string version; std::string author; @@ -285,7 +285,7 @@ CoreExport class Module /** Used to manage modules. */ -CoreExport class ModuleManager +class CoreExport ModuleManager { public: /** Load up a list of modules. |