summaryrefslogtreecommitdiff
path: root/ping/ping.cpp
diff options
context:
space:
mode:
authorsje <sje@4f64403b-2f21-0410-a795-97e2b3489a10>2007-06-01 07:26:36 +0000
committersje <sje@4f64403b-2f21-0410-a795-97e2b3489a10>2007-06-01 07:26:36 +0000
commit6b3636e3176e5bdeca67a3c67844036784c6d771 (patch)
tree010d3b4349d2e4b48509c8a6adfefb460c43a22f /ping/ping.cpp
parentb0cb3bc1afc50b126575ce931b42ac2bd6c89c0a (diff)
loadable with pre 0.7
append (not overwrite) log file git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@191 4f64403b-2f21-0410-a795-97e2b3489a10
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)
{