summaryrefslogtreecommitdiff
path: root/ping/ping.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ping/ping.cpp')
-rw-r--r--ping/ping.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/ping/ping.cpp b/ping/ping.cpp
index 90ee2d5..b5fba5c 100644
--- a/ping/ping.cpp
+++ b/ping/ping.cpp
@@ -13,7 +13,7 @@ bool use_raw_ping = true;
PLUGININFOEX pluginInfo={
sizeof(PLUGININFOEX),
"Ping Plugin",
- PLUGIN_MAKE_VERSION(0, 8, 0, 1),
+ PLUGIN_MAKE_VERSION(0, 8, 0, 2),
"Ping labelled IP addresses or domain names.",
"Scott Ellis",
"mail@scottellis.com.au",
@@ -35,6 +35,12 @@ extern "C" PING_API PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
return &pluginInfo;
}
+extern "C" PING_API PLUGININFO* MirandaPluginInfo(DWORD mirandaVersion)
+{
+ pluginInfo.cbSize = sizeof(PLUGININFO);
+ return (PLUGININFO*)&pluginInfo;
+}
+
static const MUUID interfaces[] = {MIID_PING, MIID_LAST};
extern "C" __declspec(dllexport) const MUUID* MirandaPluginInterfaces(void)
{