summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/ExternalAPI/m_mydetails.h5
-rw-r--r--plugins/MyDetails/src/mydetails.cpp6
2 files changed, 2 insertions, 9 deletions
diff --git a/plugins/ExternalAPI/m_mydetails.h b/plugins/ExternalAPI/m_mydetails.h
index ad604332b1..e0396a8cf8 100644
--- a/plugins/ExternalAPI/m_mydetails.h
+++ b/plugins/ExternalAPI/m_mydetails.h
@@ -21,11 +21,6 @@ Boston, MA 02111-1307, USA.
#ifndef __M_MYDETAILS_H__
# define __M_MYDETAILS_H__
-
-#define MIID_MDETAILS { 0xdba18dbc, 0x5be6, 0x4504, { 0xa7, 0x99, 0x29, 0xec, 0x6c, 0xca, 0x0, 0x65 } }
-
-
-
/*
MyDetails/SetMyNickname service
Set the nickname for all possible protocols
diff --git a/plugins/MyDetails/src/mydetails.cpp b/plugins/MyDetails/src/mydetails.cpp
index 454429dd13..ac98f0d3fc 100644
--- a/plugins/MyDetails/src/mydetails.cpp
+++ b/plugins/MyDetails/src/mydetails.cpp
@@ -36,7 +36,7 @@ PLUGININFOEX pluginInfo={
"http://miranda-ng.org/",
UNICODE_AWARE,
// {A82BAEB3-A33C-4036-B837-7803A5B6C2AB}
- { 0xa82baeb3, 0xa33c, 0x4036, { 0xb8, 0x37, 0x78, 0x3, 0xa5, 0xb6, 0xc2, 0xab } }
+ {0xa82baeb3, 0xa33c, 0x4036, {0xb8, 0x37, 0x78, 0x3, 0xa5, 0xb6, 0xc2, 0xab}}
};
static IconItem iconList[] =
@@ -58,7 +58,7 @@ HWND hwndSetStatusMsg;
// Functions //////////////////////////////////////////////////////////////////////////////////////
-BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved)
+BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
hInst = hinstDLL;
return TRUE;
@@ -69,8 +69,6 @@ extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD miranda
return &pluginInfo;
}
-extern "C" __declspec(dllexport) const MUUID interfaces[] = { MIID_MDETAILS, MIID_LAST };
-
// Set nickname ///////////////////////////////////////////////////////////////////////////////////
#define WMU_SETDATA (WM_USER+1)