diff options
-rw-r--r-- | plugins/ConnectionNotify/src/ConnectionNotify.cpp | 7 | ||||
-rw-r--r-- | plugins/HTTPServer/src/main.cpp | 2 |
2 files changed, 3 insertions, 6 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];
diff --git a/plugins/HTTPServer/src/main.cpp b/plugins/HTTPServer/src/main.cpp index 51c26eb421..f2b57ce946 100644 --- a/plugins/HTTPServer/src/main.cpp +++ b/plugins/HTTPServer/src/main.cpp @@ -828,7 +828,7 @@ int nSystemShutdown(WPARAM /*wparam*/, LPARAM /*lparam*/) { }
/////////////////////////////////////////////////////////////////////
- // Member Function : MirandaPluginInfoEx & MirandaPluginInterfaces
+ // Member Function : MirandaPluginInfoEx
// Type : Global
// Parameters : mirandaVersion - ?
// Returns :
|