diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-09 21:21:08 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-09 21:21:08 +0000 |
commit | 15c3ae7d39013d358ff1b1df8ff04d977e314c30 (patch) | |
tree | efb8e68d623aae9434d2d621ca8f094d153fe54b /plugins | |
parent | c137624cb6999b85b67006df9e97226a47df50f8 (diff) |
removed not needed interfaces
git-svn-id: http://svn.miranda-ng.org/main/trunk@3511 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/RecentContacts/src/RecentContacts.cpp | 13 | ||||
-rw-r--r-- | plugins/RecentContacts/src/RecentContacts.h | 3 |
2 files changed, 4 insertions, 12 deletions
diff --git a/plugins/RecentContacts/src/RecentContacts.cpp b/plugins/RecentContacts/src/RecentContacts.cpp index acfa00b7e1..65f0e730e2 100644 --- a/plugins/RecentContacts/src/RecentContacts.cpp +++ b/plugins/RecentContacts/src/RecentContacts.cpp @@ -37,15 +37,14 @@ PLUGININFOEX pluginInfo = sizeof(PLUGININFOEX),
"Recent Contacts",
PLUGIN_MAKE_VERSION(0,0,2,0),
- "Adds a menu item in main menu, which open the window with list of last used contacts names,"
- " sorted in order from most recent to least.",
+ "Adds a menu item in main menu, which open the window with list of last used contacts names, sorted in order from most recent to least.",
"ValeraVi, Kildor",
"kostia@ngs.ru",
"© 2005 ValeraVi, © 2009 Kildor",
"http://miranda-ng.org/",
- UNICODE_AWARE, //doesn't replace anything built-in
- { 0x0e5f3b9d, 0xebcd, 0x44d7, {0x93, 0x74, 0xd8, 0xe5, 0xd8, 0x8d, 0xf4, 0xe3}}
- /* 0e5f3b9d-ebcd-44d7-9374-d8e5d88df4e3 */
+ UNICODE_AWARE,
+ // 0e5f3b9d-ebcd-44d7-9374-d8e5d88df4e3
+ {0x0e5f3b9d, 0xebcd, 0x44d7, {0x93, 0x74, 0xd8, 0xe5, 0xd8, 0x8d, 0xf4, 0xe3}}
};
static IconItem icon = { LPGEN("Main icon"), "recent_main", IDI_SHOWRECENT };
@@ -57,10 +56,6 @@ extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD miranda /////////////////////////////////////////////////////////////////////////////////////////
-extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = {MIID_RECENTCONTACTS, MIID_LAST};
-
-/////////////////////////////////////////////////////////////////////////////////////////
-
void LoadDBSettings()
{
ZeroMemory(&LastUCOpt, sizeof(LastUCOpt));
diff --git a/plugins/RecentContacts/src/RecentContacts.h b/plugins/RecentContacts/src/RecentContacts.h index db27b2d9d5..691eb6817e 100644 --- a/plugins/RecentContacts/src/RecentContacts.h +++ b/plugins/RecentContacts/src/RecentContacts.h @@ -30,9 +30,6 @@ #include <m_toptoolbar.h>
-/* dc90285a-9985-4b7a-baad-e70ae1dfc1d9 */
-#define MIID_RECENTCONTACTS { 0xdc90285a, 0x9985, 0x4b7a, {0xba, 0xad, 0xe7, 0x0a, 0xe1, 0xdf, 0xc1, 0xd9}}
-
#define V_RECENTCONTACTS_TOGGLE_IGNORE "RecentContacts/ToggleIgnore"
using namespace std;
|