diff options
author | Robert Pösel <robyer@seznam.cz> | 2013-10-30 07:58:54 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2013-10-30 07:58:54 +0000 |
commit | 4516a6cdd712c510adba4b40f8b85db9ccf1a537 (patch) | |
tree | 807c8e4c2bac79f63b4e21f339f98dacc44a76c4 /plugins/mDynDNS | |
parent | 2a839a4fff225165b25b12a04eddfa07d825a85f (diff) |
MirandaInterfaces fixes - also make SAR working correctly
git-svn-id: http://svn.miranda-ng.org/main/trunk@6696 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/mDynDNS')
-rw-r--r-- | plugins/mDynDNS/mDynDNS.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/plugins/mDynDNS/mDynDNS.cpp b/plugins/mDynDNS/mDynDNS.cpp index bf355a114a..8553770552 100644 --- a/plugins/mDynDNS/mDynDNS.cpp +++ b/plugins/mDynDNS/mDynDNS.cpp @@ -64,11 +64,7 @@ extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD miranda return &pluginInfo;
}
-static const MUUID interfaces[] = { MIID_MDYNDNS, MIID_LAST };
-extern "C" __declspec(dllexport) const MUUID* MirandaPluginInterfaces(void)
-{
- return interfaces;
-}
+extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = { MIID_MDYNDNS, MIID_LAST };
/** Initializes the services provided and the link to those needed
* Called when the plugin is loaded into Miranda
@@ -550,7 +546,7 @@ static int PrintError(int err_num) err = "There was a serious problem with updating domain alias to it's previous IP. In order not to get abuse the mDynDns plugin will stop working. To get additional information please refer to the readme.txt.";
break;
case 12:
- err = "The specified hostname has been blocked becouce of update abuse. In order not to get situation worse the mDynDns plugin will stop working. To get additional information please refer to the readme.txt.";
+ err = "The specified hostname has been blocked because of update abuse. In order not to get situation worse the mDynDns plugin will stop working. To get additional information please refer to the readme.txt.";
break;
case 13:
err = "Due to some errors mDynDNS plugin has been turned off to prevent blocking on server.";
|