summaryrefslogtreecommitdiff
path: root/plugins/CrashDumper/src
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2013-02-08 21:14:13 +0000
committerKirill Volinsky <mataes2007@gmail.com>2013-02-08 21:14:13 +0000
commit2cad3cc89947c51d0fc1a8b283f3c7b3a75dd2c6 (patch)
treef200ab8435c16185b8b2501fe807143ca7a9e63f /plugins/CrashDumper/src
parenteda4fb738e3e081d358ec63770bb0624f397b908 (diff)
removed not needed interfaces
added filter git-svn-id: http://svn.miranda-ng.org/main/trunk@3495 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/CrashDumper/src')
-rw-r--r--plugins/CrashDumper/src/crshdmp.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/plugins/CrashDumper/src/crshdmp.cpp b/plugins/CrashDumper/src/crshdmp.cpp
index b94ad9f0ca..a34134de6c 100644
--- a/plugins/CrashDumper/src/crshdmp.cpp
+++ b/plugins/CrashDumper/src/crshdmp.cpp
@@ -55,22 +55,19 @@ static const PLUGININFOEX pluginInfoEx =
"http://miranda-ng.org/",
UNICODE_AWARE,
// {F62C1D7A-FFA4-4065-A251-4C9DD9101CC8}
- { 0xf62c1d7a, 0xffa4, 0x4065, { 0xa2, 0x51, 0x4c, 0x9d, 0xd9, 0x10, 0x1c, 0xc8 } }
+ {0xf62c1d7a, 0xffa4, 0x4065, {0xa2, 0x51, 0x4c, 0x9d, 0xd9, 0x10, 0x1c, 0xc8}}
};
const PLUGININFOEX* GetPluginInfoEx(void) { return &pluginInfoEx; }
-
extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirVersion)
{
::mirandaVersion = mirVersion;
return (PLUGININFOEX*)&pluginInfoEx;
}
-#define MIID_CRASHDUMP { 0x36a31a50, 0xcb55, 0x46d0, { 0xab, 0x9c, 0x1e, 0xac, 0xfb, 0x24, 0x0, 0x2a } }
-
// MirandaInterfaces - returns the protocol interface to the core
-extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = { MIID_SERVICEMODE, MIID_CRASHDUMP, MIID_LAST };
+extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = {MIID_SERVICEMODE, MIID_LAST};
INT_PTR StoreVersionInfoToFile(WPARAM, LPARAM lParam)
{