From cf835fe51dcd7820e3500a22994f2a95a2c10087 Mon Sep 17 00:00:00 2001 From: prozacx Date: Thu, 21 Apr 2005 21:38:16 +0000 Subject: [PATCH] Inc'd version git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@160 726aef4b-f618-498e-8847-2d620e286838 --- Modules.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules.h b/Modules.h index ed9b44c1..be7cc4bf 100644 --- a/Modules.h +++ b/Modules.h @@ -8,7 +8,7 @@ using std::vector; using std::string; -#define VERSION 0.029 +#define VERSION 0.030 #define MODULEDEFS(CLASS) extern "C" { CModule* Load(void* p, CUser* pUser, const string& sModName); void Unload(CModule* pMod); double GetVersion(); } double GetVersion() { return VERSION; } CModule* Load(void* p, CUser* pUser, const string& sModName) { return new CLASS(p, pUser, sModName); } void Unload(CModule* pMod) { if (pMod) { delete pMod; } } #define MODCONSTRUCTOR(CLASS) CLASS(void *pDLL, CUser* pUser, const string& sModName) : CModule(pDLL, pUser, sModName)