From a2dbcad6d589a53c7bf87274a418b6f6efbd79b6 Mon Sep 17 00:00:00 2001 From: prozacx Date: Sun, 1 May 2005 07:08:57 +0000 Subject: [PATCH] Inc'd version git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@221 726aef4b-f618-498e-8847-2d620e286838 --- Modules.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules.h b/Modules.h index 66a378c0..ad30c7a8 100644 --- a/Modules.h +++ b/Modules.h @@ -8,7 +8,7 @@ using std::vector; using std::string; -#define VERSION 0.033 +#define VERSION 0.034 #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)