diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-10 14:54:43 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-10 14:54:43 +0000 |
commit | 864f900f46c6cf643fe44b413432cd47f2a23c90 (patch) | |
tree | 0310335b7fa73140a398105b671d590dbb3b801f /plugins/Clist_mw/src/init.cpp | |
parent | 3267fed9ad218524f78b5bcbf9feb7348902b80b (diff) |
added version info
git-svn-id: http://svn.miranda-ng.org/main/trunk@3531 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_mw/src/init.cpp')
-rw-r--r-- | plugins/Clist_mw/src/init.cpp | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/plugins/Clist_mw/src/init.cpp b/plugins/Clist_mw/src/init.cpp index cbb0c062ad..2d89519ac4 100644 --- a/plugins/Clist_mw/src/init.cpp +++ b/plugins/Clist_mw/src/init.cpp @@ -77,16 +77,16 @@ extern int BGModuleUnload(); PLUGININFOEX pluginInfo = {
sizeof(PLUGININFOEX),
- "MultiWindow Contact List",
- PLUGIN_MAKE_VERSION(0,9,0,0),
- "Displays contacts, event notifications, protocol status with MW modifications.",
- "",
- "bethoven@mailgate.ru" ,
- "Copyright 2000-2010 Miranda IM project, 2012 Miranda NG project.",
- "http://miranda-ng.org/",
+ __PLUGIN_NAME,
+ PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
+ __DESCRIPTION,
+ __AUTHOR,
+ __AUTHOREMAIL,
+ __COPYRIGHT,
+ __AUTHORWEB,
UNICODE_AWARE,
- //{2A417AB9-16F2-472d-9AE3-415103C78A64}
- {0x2a417ab9, 0x16f2, 0x472d, { 0x9a, 0xe3, 0x41, 0x51, 0x3, 0xc7, 0x8a, 0x64 }}
+ // {2A417AB9-16F2-472D-9AE3-415103C78A64}
+ {0x2a417ab9, 0x16f2, 0x472d, {0x9a, 0xe3, 0x41, 0x51, 0x3, 0xc7, 0x8a, 0x64}}
};
BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD dwReason, LPVOID reserved)
@@ -209,7 +209,6 @@ extern "C" int __declspec(dllexport) CListInitialise() extern "C" int __declspec(dllexport) Load(void)
{
OutputDebugStringA("Load ClistMW\r\n");
- MessageBoxA(0,"You Running Old Miranda, use >30-10-2004 version!","MultiWindow Clist",0);
CListInitialise();
return 1;
}
|