diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-27 13:30:33 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-27 13:30:33 +0000 |
commit | 4439a8e4385108406c1c684debf3c8e29f9aa549 (patch) | |
tree | 5cedf2a1479433dbb982e70d5ccf46d430c912d0 /plugins/ConnectionNotify | |
parent | 7d5177b035aed270dc6e9f4e7a2692597abb9230 (diff) |
couple of atavisms removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@7914 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ConnectionNotify')
-rw-r--r-- | plugins/ConnectionNotify/src/ConnectionNotify.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/plugins/ConnectionNotify/src/ConnectionNotify.cpp b/plugins/ConnectionNotify/src/ConnectionNotify.cpp index 0f1c3d0005..4fca1e528a 100644 --- a/plugins/ConnectionNotify/src/ConnectionNotify.cpp +++ b/plugins/ConnectionNotify/src/ConnectionNotify.cpp @@ -54,7 +54,7 @@ PLUGININFOEX pluginInfo={ {0x4bb5b4aa, 0xc364, 0x4f23, { 0x97, 0x46, 0xd5, 0xb7, 0x8, 0xa2, 0x86, 0xa5 } }
};
-extern "C" __declspec(dllexport) const MUUID interfaces[]={MIID_CONNECTIONNOTIFY,MIID_PROTOCOL, MIID_LAST};
+extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = { MIID_CONNECTIONNOTIFY, MIID_PROTOCOL, MIID_LAST };
// authentication callback futnction from extension manager
// ======================================
@@ -87,10 +87,7 @@ extern "C" __declspec(dllexport) const PLUGININFOEX* MirandaPluginInfoEx(DWORD m {
return &pluginInfo;
}
-extern "C" __declspec(dllexport) const MUUID* MirandaPluginInterfaces(void)
-{
- return interfaces;
-}
+
void saveSettingsConnections(struct CONNECTION *connHead)
{
char buff[128];
|