summaryrefslogtreecommitdiff
path: root/plugins/SecureIM/src/commonheaders.cpp
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2013-03-09 09:06:29 +0000
committerKirill Volinsky <mataes2007@gmail.com>2013-03-09 09:06:29 +0000
commit92e2a3f31edc21a0ceb5691cbe7cb122e1d58e45 (patch)
treef4cddfd66a741ec8e0f28e917240ae9c133b2656 /plugins/SecureIM/src/commonheaders.cpp
parenta4498f183c28fb10af04e94d1236b795b06bf7a5 (diff)
added version info
git-svn-id: http://svn.miranda-ng.org/main/trunk@3926 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SecureIM/src/commonheaders.cpp')
-rw-r--r--plugins/SecureIM/src/commonheaders.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/plugins/SecureIM/src/commonheaders.cpp b/plugins/SecureIM/src/commonheaders.cpp
index 75749b083f..f8de40fc35 100644
--- a/plugins/SecureIM/src/commonheaders.cpp
+++ b/plugins/SecureIM/src/commonheaders.cpp
@@ -27,19 +27,19 @@ CRITICAL_SECTION localQueueMutex;
PLUGININFOEX pluginInfoEx = {
sizeof(PLUGININFOEX),
- MODULENAME,
- __VERSION_DWORD,
- MODULENAME" plugin for Miranda NG.",
- "Johell, Ghost, Nightwish, __alex, Baloo",
- "Johell@ifrance.com, baloo@bk.ru",
- "© 2003 Johell, © 2005-09 Baloo",
- "http://miranda-ng.org/",
- UNICODE_AWARE,
- //1B2A39E5-E2F6-494D-958D-1808FD110DD5
- {0x1B2A39E5, 0xE2F6, 0x494D, {0x95, 0x8D, 0x18, 0x08, 0xFD, 0x11, 0x0D, 0xD5}}
+ __PLUGIN_NAME,
+ PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
+ __DESCRIPTION,
+ __AUTHOR,
+ __AUTHOREMAIL,
+ __COPYRIGHT,
+ __AUTHORWEB,
+ UNICODE_AWARE,
+ // {1B2A39E5-E2F6-494D-958D-1808FD110DD5}
+ {0x1B2A39E5, 0xE2F6, 0x494D, {0x95, 0x8D, 0x18, 0x08, 0xFD, 0x11, 0x0D, 0xD5}}
};
-LPSTR myDBGetString(HANDLE hContact,const char *szModule,const char *szSetting)
+LPSTR myDBGetString(HANDLE hContact, const char *szModule, const char *szSetting)
{
char *val=NULL;
DBVARIANT dbv;