diff options
-rw-r--r-- | plugins/ExternalAPI/m_quickcontacts.h | 7 | ||||
-rw-r--r-- | plugins/QuickContacts/src/quickcontacts.cpp | 13 |
2 files changed, 3 insertions, 17 deletions
diff --git a/plugins/ExternalAPI/m_quickcontacts.h b/plugins/ExternalAPI/m_quickcontacts.h index 5f8acb3d5e..f4110ad78d 100644 --- a/plugins/ExternalAPI/m_quickcontacts.h +++ b/plugins/ExternalAPI/m_quickcontacts.h @@ -21,10 +21,6 @@ Boston, MA 02111-1307, USA. #ifndef __M_QUICKCONTACTS_H__
# define __M_QUICKCONTACTS_H__
-
-#define MIID_QUICKCONTACTS { 0x5e638aa7, 0x4989, 0x4dbf, { 0x94, 0xa, 0x1e, 0xcb, 0x6c, 0x52, 0xcc, 0x52 } }
-
-
/*
Show the dialog to select the contact
@@ -33,7 +29,4 @@ lParam: ignored */
#define MS_QC_SHOW_DIALOG "QuickContacts/ShowDialog"
-
-
-
#endif // __M_QUICKCONTACTS_H__
diff --git a/plugins/QuickContacts/src/quickcontacts.cpp b/plugins/QuickContacts/src/quickcontacts.cpp index f5aa9e59c0..6ee218d4d2 100644 --- a/plugins/QuickContacts/src/quickcontacts.cpp +++ b/plugins/QuickContacts/src/quickcontacts.cpp @@ -35,7 +35,8 @@ PLUGININFOEX pluginInfo={ "© 2007-2009 Ricardo Pescuma Domenecci",
"http://pescuma.org/miranda/quickcontacts",
UNICODE_AWARE,
- { 0xf93ba59c, 0x4f48, 0x4f2e, { 0x8a, 0x91, 0x77, 0xa2, 0x80, 0x15, 0x27, 0xa3 } } // {F93BA59C-4F48-4F2E-8A91-77A2801527A3}
+ // {F93BA59C-4F48-4F2E-8A91-77A2801527A3}
+ {0xf93ba59c, 0x4f48, 0x4f2e, {0x8a, 0x91, 0x77, 0xa2, 0x80, 0x15, 0x27, 0xa3}}
};
@@ -70,7 +71,7 @@ char *metacontacts_proto = NULL; // Functions ////////////////////////////////////////////////////////////////////////////
-extern "C" BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
+BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
hInst = hinstDLL;
return TRUE;
@@ -82,14 +83,6 @@ extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD miranda return &pluginInfo;
}
-
-static const MUUID interfaces[] = { MIID_QUICKCONTACTS, MIID_LAST };
-extern "C" __declspec(dllexport) const MUUID* MirandaPluginInterfaces(void)
-{
- return interfaces;
-}
-
-
extern "C" __declspec(dllexport) int Load()
{
mir_getLP(&pluginInfo);
|