diff options
Diffstat (limited to 'ping_protocol/pingproto.cpp')
-rw-r--r-- | ping_protocol/pingproto.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ping_protocol/pingproto.cpp b/ping_protocol/pingproto.cpp index bf925f2..6aed985 100644 --- a/ping_protocol/pingproto.cpp +++ b/ping_protocol/pingproto.cpp @@ -140,7 +140,7 @@ int GetStatus(WPARAM wParam,LPARAM lParam) PLUGININFOEX pluginInfo={
sizeof(PLUGININFOEX),
"Ping Protocol",
- PLUGIN_MAKE_VERSION(0, 5, 0, 1),
+ PLUGIN_MAKE_VERSION(0, 5, 0, 2),
"Ping labelled IP addresses or domain names.",
"Scott Ellis",
"mail@scottellis.com.au",
@@ -162,6 +162,12 @@ extern "C" PINGPROTO_API PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion) return &pluginInfo;
}
+extern "C" PINGPROTO_API PLUGININFO* MirandaPluginInfo(DWORD mirandaVersion)
+{
+ pluginInfo.cbSize = sizeof(PLUGININFO);
+ return (PLUGININFO*)&pluginInfo;
+}
+
static const MUUID interfaces[] = {MIID_PROTOCOL, MIID_PING, MIID_LAST};
extern "C" __declspec(dllexport) const MUUID* MirandaPluginInterfaces(void)
{
|