diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-08 21:09:49 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-08 21:09:49 +0000 |
commit | eda4fb738e3e081d358ec63770bb0624f397b908 (patch) | |
tree | 8bc39872dd8166f24351cdc070a53af46efef88d | |
parent | 861cabec0529cc44e7d8741629bbfa9701dd40ad (diff) |
removed not needed interfaces
git-svn-id: http://svn.miranda-ng.org/main/trunk@3494 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/CountryFlags/src/main.cpp | 2 | ||||
-rw-r--r-- | plugins/ExternalAPI/m_flags.h | 13 |
2 files changed, 0 insertions, 15 deletions
diff --git a/plugins/CountryFlags/src/main.cpp b/plugins/CountryFlags/src/main.cpp index 1fda1837b3..d418828192 100644 --- a/plugins/CountryFlags/src/main.cpp +++ b/plugins/CountryFlags/src/main.cpp @@ -39,8 +39,6 @@ static PLUGININFOEX pluginInfo={ {0x68c36842,0x3d95,0x4f4a,{0xab,0x81,0x1,0x4d,0x65,0x93,0x86,0x3b}}
};
-extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[]={MIID_FLAGS,MIID_LAST};
-
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
hInst = hinstDLL;
diff --git a/plugins/ExternalAPI/m_flags.h b/plugins/ExternalAPI/m_flags.h index 9d6bad8816..c3b9a2a5d6 100644 --- a/plugins/ExternalAPI/m_flags.h +++ b/plugins/ExternalAPI/m_flags.h @@ -20,19 +20,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #ifndef M_FLAGS_H__
#define M_FLAGS_H__
-#if defined (_MSC_VER) && (_MSC_VER >= 1020)
- #pragma once
-#endif
-
-/*
- Country Flags Plugin v0.1.0.3
-*/
-
-/* interface id */
-#if !defined(MIID_FLAGS)
- #define MIID_FLAGS {0x88a3b66e,0xc438,0x4381,{0xbc,0x17,0x71,0xd9,0x9d,0x22,0x5f,0x9c}}
-#endif
-
/* Load a country flag icon from the skin library. v0.1.0.0+
The retrieved icon should be released using MS_SKIN2_RELEASEICON after use.
The country numbers can be retrieved using MS_UTILS_GETCOUNTRYLIST.
|