diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-08 20:43:35 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-08 20:43:35 +0000 |
commit | bd1739ee0ce7af9d5849b8902de4be82432eea54 (patch) | |
tree | fc84c3d85f668c83988d41f0fc40fef0924ddf2f /include | |
parent | 7a3c2fe12668ba4346e2b31b34f0b0c4b9ac590d (diff) |
removed not needed interfaces
git-svn-id: http://svn.miranda-ng.org/main/trunk@3486 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include')
-rw-r--r-- | include/delphi/interfaces.inc | 6 | ||||
-rw-r--r-- | include/newpluginapi.h | 6 |
2 files changed, 0 insertions, 12 deletions
diff --git a/include/delphi/interfaces.inc b/include/delphi/interfaces.inc index 3c92063080..3896da96a5 100644 --- a/include/delphi/interfaces.inc +++ b/include/delphi/interfaces.inc @@ -37,12 +37,6 @@ const MIID_TESTPLUGIN :MUUID='{53B974F4-3C74-4DBA-8FC2-6F92FE013B8C}'; const MIID_EXTRAICONSSERVICE:MUUID='{62D80749-F169-4592-B44D-3DD6DE9D50C5}';
-// Common plugin interfaces (non-core plugins)
-const MIID_LOGWINDOW :MUUID='{C53AFB90-FA44-4304-BC9D-6A841C3905F5}';
-const MIID_EVENTNOTIFY :MUUID='{F3D7EC5A-F7EF-45DD-8CA5-B0F6BA18647B}';
-const MIID_SRCONTACTS :MUUID='{7CA6050E-BAF7-42D2-B936-0DB9DF572B95}';
-const MIID_HISTORYEXPORT :MUUID='{18FA2ADE-E31B-4B5D-953D-0AB25781C604}';
-
const MIID_SMILEY :MUUID='{E03C71B2-6DEE-467E-A4F0-DD516745876A}';
const MIID_FLAGS :MUUID='{88A3B66E-C438-4381-BC17-71D99D225F9C}';
const MIID_SPELLCHECKER :MUUID='{26EED12A-7016-4D0F-9B4A-0CAA7E2229F3}';
diff --git a/include/newpluginapi.h b/include/newpluginapi.h index c240e2c8ff..698b41ecc9 100644 --- a/include/newpluginapi.h +++ b/include/newpluginapi.h @@ -71,12 +71,6 @@ typedef struct _MUUID { #define MIID_IMGSERVICES {0xf3974915, 0xc9d5, 0x4c87, {0x85, 0x64, 0xa0, 0xeb, 0xf9, 0xd2, 0x5a, 0xa0}}
#define MIID_TESTPLUGIN {0x53b974f4, 0x3c74, 0x4dba, {0x8f, 0xc2, 0x6f, 0x92, 0xfe, 0x01, 0x3b, 0x8c}}
-/* Common plugin interfaces (non-core plugins) */
-#define MIID_LOGWINDOW {0xc53afb90, 0xfa44, 0x4304, {0xbc, 0x9d, 0x6a, 0x84, 0x1c, 0x39, 0x05, 0xf5}}
-#define MIID_EVENTNOTIFY {0xF3D7EC5A, 0xF7EF, 0x45DD, {0x8C, 0xA5, 0xB0, 0xF6, 0xBA, 0x18, 0x64, 0x7B}}
-#define MIID_SRCONTACTS {0x7CA6050E, 0xBAF7, 0x42D2, {0xB9, 0x36, 0x0D, 0xB9, 0xDF, 0x57, 0x2B, 0x95}}
-#define MIID_HISTORYEXPORT {0x18fa2ade, 0xe31b, 0x4b5d, {0x95, 0x3d, 0x0a, 0xb2, 0x57, 0x81, 0xc6, 0x04}}
-
/* Special exception interface for protocols.
This interface allows more than one plugin to implement it at the same time
*/
|