X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_nonicks.cpp;h=e7f23e145fc27cb24e2b39530668dd38093dea53;hb=cd7657bddc7a6dc2e7326077d173a874bf71f6bd;hp=103d07c2a5eb46eca8774c5eff9f6a8cd56f285b;hpb=1635c37dadd8650a7d3ee27a0c003c4e30f1ec4e;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_nonicks.cpp b/src/modules/m_nonicks.cpp index 103d07c2a..e7f23e145 100644 --- a/src/modules/m_nonicks.cpp +++ b/src/modules/m_nonicks.cpp @@ -11,12 +11,12 @@ * --------------------------------------------------- */ +#include "inspircd.h" #include "users.h" #include "channels.h" #include "modules.h" #include "hashcomp.h" #include "configreader.h" -#include "inspircd.h" /* $ModDesc: Provides support for channel mode +N which prevents nick changes on channel */ @@ -53,7 +53,7 @@ class ModuleNoNickChange : public Module NoNicks* nn; public: ModuleNoNickChange(InspIRCd* Me) - : Module::Module(Me) + : Module(Me) { nn = new NoNicks(ServerInstance); @@ -120,7 +120,7 @@ class ModuleNoNickChangeFactory : public ModuleFactory }; -extern "C" void * init_module( void ) +extern "C" DllExport void * init_module( void ) { return new ModuleNoNickChangeFactory; }