]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_regex_glob.cpp
Windows compile fixes for RLine
[user/henk/code/inspircd.git] / src / modules / m_regex_glob.cpp
index 7977c77f105c2555b44cf03b1885868efe76b043..2f7174f0dd7cb3b53bdbd3a7e7e0f95f710c4659 100644 (file)
@@ -44,6 +44,11 @@ public:
                Me->Modules->Attach(eventlist, this, 1);
        }
 
+       virtual Version GetVersion()
+       {
+               return Version("$Id: m_regex_glob.cpp 10291 2008-08-25 20:35:51Z w00t $", VF_COMMON | VF_VENDOR | VF_SERVICEPROVIDER, API_VERSION);
+       }
+
        virtual ~ModuleRegexGlob()
        {
                ServerInstance->Modules->UnpublishInterface("RegularExpression", this);
@@ -65,3 +70,5 @@ public:
                return NULL;
        }
 };
+
+MODULE_INIT(ModuleRegexGlob)