diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-08 21:03:09 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-08 21:03:09 +0000 |
commit | 9a9cd8e08881b8740e58a703e3b44328cef00c88 (patch) | |
tree | 9d9fff3faf0571f9c2320524086964105a55a6e5 | |
parent | a3144eb41ed3ba6872b7cd6692b826a69d5c6ad2 (diff) |
removed not needed interfaces
git-svn-id: http://svn.miranda-ng.org/main/trunk@3491 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/AutoShutdown/src/main.cpp | 4 | ||||
-rw-r--r-- | plugins/ExternalAPI/m_shutdown.h | 13 |
2 files changed, 0 insertions, 17 deletions
diff --git a/plugins/AutoShutdown/src/main.cpp b/plugins/AutoShutdown/src/main.cpp index 4128bd7a1a..93521ca658 100644 --- a/plugins/AutoShutdown/src/main.cpp +++ b/plugins/AutoShutdown/src/main.cpp @@ -93,10 +93,6 @@ extern "C" __declspec(dllexport) const PLUGININFOEX* MirandaPluginInfoEx(DWORD m return &pluginInfo;
}
-extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[]={MIID_SHUTDOWN,MIID_LAST};
-
-/////////////////////////////////////////////////////////////////////////////////////////
-
extern "C" __declspec(dllexport) int Load(void)
{
mir_getLP(&pluginInfo);
diff --git a/plugins/ExternalAPI/m_shutdown.h b/plugins/ExternalAPI/m_shutdown.h index 87e25e8851..3db262e885 100644 --- a/plugins/ExternalAPI/m_shutdown.h +++ b/plugins/ExternalAPI/m_shutdown.h @@ -23,19 +23,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #ifndef M_SHUTDOWN_H__
#define M_SHUTDOWN_H__
-#if defined (_MSC_VER) && (_MSC_VER >= 1020)
- #pragma once
-#endif
-
-/*
- AutoShutdown v1.4.0.2
-*/
-
-/* interface id */
-#if !defined(MIID_SHUTDOWN)
- #define MIID_SHUTDOWN {0x142982a8,0x88cf,0x4c65,{0x87,0x21,0x6d,0xe2,0x7d,0x5c,0xe7,0xb5}}
-#endif
-
/******************************************************************/
/************************* SERVICES *******************************/
/******************************************************************/
|