summaryrefslogtreecommitdiff
path: root/plugins/ConnectionNotify/src
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-03-26 13:46:31 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-03-26 13:46:41 +0300
commit0b0d9f28696294beed32d5cdc3f5e93cd996f08e (patch)
tree3018a8dcd6358bb64535209de089c109aa972351 /plugins/ConnectionNotify/src
parent446c7bccafe06ec44f3cd0a0658b94b1bc6b9edf (diff)
code cleaning
Diffstat (limited to 'plugins/ConnectionNotify/src')
-rw-r--r--plugins/ConnectionNotify/src/ConnectionNotify.cpp2
-rw-r--r--plugins/ConnectionNotify/src/stdafx.h5
2 files changed, 1 insertions, 6 deletions
diff --git a/plugins/ConnectionNotify/src/ConnectionNotify.cpp b/plugins/ConnectionNotify/src/ConnectionNotify.cpp
index 8221497252..cb1e82dbec 100644
--- a/plugins/ConnectionNotify/src/ConnectionNotify.cpp
+++ b/plugins/ConnectionNotify/src/ConnectionNotify.cpp
@@ -54,7 +54,7 @@ PLUGININFOEX pluginInfo = {
{ 0x4bb5b4aa, 0xc364, 0x4f23, { 0x97, 0x46, 0xd5, 0xb7, 0x8, 0xa2, 0x86, 0xa5 } }
};
-extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = { MIID_CONNECTIONNOTIFY, MIID_PROTOCOL, MIID_LAST };
+extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = { MIID_PROTOCOL, MIID_LAST };
// authentication callback futnction from extension manager
// ======================================
diff --git a/plugins/ConnectionNotify/src/stdafx.h b/plugins/ConnectionNotify/src/stdafx.h
index e6ec948c9d..2837c72125 100644
--- a/plugins/ConnectionNotify/src/stdafx.h
+++ b/plugins/ConnectionNotify/src/stdafx.h
@@ -34,11 +34,6 @@
#define PLUGINNAME_NEWSOUND PLUGINNAME "_new_sound"
-#if !defined(MIID_CONNECTIONNOTIFY)
- #define MIID_CONNECTIONNOTIFY {0x4bb5b4aa, 0xc364, 0x4f23, { 0x97, 0x46, 0xd5, 0xb7, 0x8, 0xa2, 0x86, 0xa5 } }
-#endif
-// 4BB5B4AA-C364-4F23-9746-D5B708A286A5
-
// Note: could also use malloc() and free()
#define MALLOC(x) HeapAlloc(GetProcessHeap(), 0, (x))
#define FREE(x) HeapFree(GetProcessHeap(), 0, (x))