diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-08 20:49:13 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-08 20:49:13 +0000 |
commit | c4c6db15b55147b4b8fbe944cf6d46c9ba2ff5a3 (patch) | |
tree | 2d85a20d11fae6ddbdc7d01c2311334f64a6940b | |
parent | bd1739ee0ce7af9d5849b8902de4be82432eea54 (diff) |
removed not needed interfaces
git-svn-id: http://svn.miranda-ng.org/main/trunk@3487 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | plugins/FingerprintNG/src/main.cpp | 8 | ||||
-rw-r--r-- | plugins/FingerprintNG/src/version.h | 4 |
2 files changed, 2 insertions, 10 deletions
diff --git a/plugins/FingerprintNG/src/main.cpp b/plugins/FingerprintNG/src/main.cpp index e3cb770bfa..0bf08fb1e6 100644 --- a/plugins/FingerprintNG/src/main.cpp +++ b/plugins/FingerprintNG/src/main.cpp @@ -50,8 +50,8 @@ PLUGININFOEX pluginInfoEx = { __COPYRIGHT,
__AUTHORWEB,
UNICODE_AWARE,
- //{687364AF-58B0-4AF2-A4EE-20F40A8D9AFB}
- {0x687364af, 0x58b0, 0x4af2, { 0xa4, 0xee, 0x20, 0xf4, 0xa, 0x8d, 0x9a, 0xfb}}
+ // {687364AF-58B0-4AF2-A4EE-20F40A8D9AFB}
+ {0x687364af, 0x58b0, 0x4af2, {0xa4, 0xee, 0x20, 0xf4, 0xa, 0x8d, 0x9a, 0xfb}}
};
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
@@ -65,10 +65,6 @@ extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD miranda return &pluginInfoEx;
}
-extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = {MIID_FINGERPRINT, MIID_LAST };
-
-///////////////////////////////////////////////////////////////////////////////
-
static int OnPreShutdown(WPARAM wParam, LPARAM lParam)
{
DestroyServiceFunction(compClientServA);
diff --git a/plugins/FingerprintNG/src/version.h b/plugins/FingerprintNG/src/version.h index 71fa0676f1..19b35a17f8 100644 --- a/plugins/FingerprintNG/src/version.h +++ b/plugins/FingerprintNG/src/version.h @@ -31,7 +31,3 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define __AUTHOREMAIL "faith_healer@miranda.im"
#define __AUTHORWEB "http://miranda-ng.org/"
#define __COPYRIGHT "©2006-12 ghazan, mataes, HierOS, FYR, Bio, nullbie, faith_healer and all respective contributors."
-
-// Fingerprint interface ID. Should be the same for ALL fingerprint plugins.
-// {FFF4B77A-CE40-11DB-A5CD-06A755D89593}
-#define MIID_FINGERPRINT {0xFFF4B77A, 0xCE40, 0x11DB, { 0xA5, 0xCD, 0x06, 0xA7, 0x55, 0xD8, 0x95, 0x93}}
|