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 /plugins/Console | |
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 'plugins/Console')
-rw-r--r-- | plugins/Console/src/init.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/plugins/Console/src/init.cpp b/plugins/Console/src/init.cpp index 179f1990d3..5dc110e778 100644 --- a/plugins/Console/src/init.cpp +++ b/plugins/Console/src/init.cpp @@ -37,11 +37,11 @@ PLUGININFOEX pluginInfoEx={ __PLUGIN_RIGHTS,
__PLUGIN_URL,
UNICODE_AWARE,
- { 0x23d4f302, 0xd513, 0x45b7, { 0x90, 0x27, 0x44, 0x5f, 0x29, 0x55, 0x73, 0x11 }} // {23D4F302-D513-45b7-9027-445F29557311}
-
+ // {23D4F302-D513-45b7-9027-445F29557311}
+ {0x23d4f302, 0xd513, 0x45b7, {0x90, 0x27, 0x44, 0x5f, 0x29, 0x55, 0x73, 0x11}}
};
-BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved)
+BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
hInst = hinstDLL;
return TRUE;
@@ -52,9 +52,6 @@ extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD miranda return &pluginInfoEx;
}
-// we implement service mode interface
-extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = {MIID_LOGWINDOW, MIID_LAST};
-
extern "C" __declspec(dllexport) int Load(void)
{
mir_getLP(&pluginInfoEx);
|