diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-29 14:12:40 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-01-29 14:12:40 +0000 |
commit | 3c8c91e6df3fae6a4290aeeedc0170731f672320 (patch) | |
tree | c6f75d31c2705e20e06a9c6682fd2e14b5fdf6fa /plugins/StopSpamMod | |
parent | f513f611c525310554d153aa1fe02d06a40ea49f (diff) |
- muuid standardization (patch from Basil)
git-svn-id: http://svn.miranda-ng.org/main/trunk@3338 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/StopSpamMod')
-rwxr-xr-x | plugins/StopSpamMod/src/init.cpp | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/plugins/StopSpamMod/src/init.cpp b/plugins/StopSpamMod/src/init.cpp index 2d1da2bf5d..8e3f1fca46 100755 --- a/plugins/StopSpamMod/src/init.cpp +++ b/plugins/StopSpamMod/src/init.cpp @@ -63,8 +63,6 @@ extern int RemoveTmp(WPARAM,LPARAM); /////////////////////////////////////////////////////////////////////////////////////////
// returns plugin's extended information
-// {553811EE-DEB6-48b8-8902-A8A00C1FD679}
-#define MIID_STOPSPAM { 0x553811ee, 0xdeb6, 0x48b8, { 0x89, 0x2, 0xa8, 0xa0, 0xc, 0x1f, 0xd6, 0x79 } }
PLUGININFOEX pluginInfoEx = {
sizeof(PLUGININFOEX),
@@ -76,7 +74,8 @@ PLUGININFOEX pluginInfoEx = { "© 2004-2012 Roman Miklashevsky, A. Petkevich, Kosh&chka, sss, Elzor",
"http://sss.chaoslab.ru/tracker/mim_plugs/",
UNICODE_AWARE,
- MIID_STOPSPAM
+ // {553811EE-DEB6-48b8-8902-A8A00C1FD679}
+ { 0x553811ee, 0xdeb6, 0x48b8, { 0x89, 0x2, 0xa8, 0xa0, 0xc, 0x1f, 0xd6, 0x79 } }
};
extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD)
@@ -150,15 +149,6 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved) return TRUE;
}
-/////////////////////////////////////////////////////////////////////////////////////////
-// returns plugin's interfaces information
-
-static const MUUID interfaces[] = { MIID_STOPSPAM, MIID_LAST };
-
-extern "C" __declspec(dllexport) const MUUID* MirandaPluginInterfaces(void)
-{
- return interfaces;
-}
int hLangpack = 0;
|