summaryrefslogtreecommitdiff
path: root/MySpace/MySpace.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'MySpace/MySpace.cpp')
-rw-r--r--MySpace/MySpace.cpp10
1 files changed, 1 insertions, 9 deletions
diff --git a/MySpace/MySpace.cpp b/MySpace/MySpace.cpp
index 9fac337..87eb600 100644
--- a/MySpace/MySpace.cpp
+++ b/MySpace/MySpace.cpp
@@ -39,20 +39,12 @@ extern "C" BOOL APIENTRY DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvRe
}
extern "C" __declspec (dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion) {
- if (mirandaVersion < PLUGIN_MAKE_VERSION(0, 7, 0, 30))
+ if (mirandaVersion < PLUGIN_MAKE_VERSION(0, 7, 0, 32))
return 0;
return &pluginInfo;
}
-// uncomment this for pre 0.7 compatibility
-extern "C" __declspec (dllexport) PLUGININFO* MirandaPluginInfo(DWORD mirandaVersion) {
- if (mirandaVersion < PLUGIN_MAKE_VERSION(0, 7, 0, 30))
- return 0;
- pluginInfo.cbSize = sizeof(PLUGININFO);
- return (PLUGININFO*)&pluginInfo;
-}
-
static const MUUID interfaces[] = {MIID_PROTOCOL, MIID_LAST};
extern "C" __declspec(dllexport) const MUUID* MirandaPluginInterfaces(void)
{