summaryrefslogtreecommitdiff
path: root/plugins/Ping/src/ping.cpp
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2015-07-26 11:49:19 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2015-07-26 11:49:19 +0000
commitfffcd98b6f25af8d7a7895302e3b1ff64344d526 (patch)
tree8912b5f9b0356c90d057feba3241151c3f5db51b /plugins/Ping/src/ping.cpp
parent3fc6022b5755a9a746dd628588d8df2dc60176f2 (diff)
Ping: common project
git-svn-id: http://svn.miranda-ng.org/main/trunk@14723 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Ping/src/ping.cpp')
-rw-r--r--plugins/Ping/src/ping.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Ping/src/ping.cpp b/plugins/Ping/src/ping.cpp
index 261b959ada..c179d52a12 100644
--- a/plugins/Ping/src/ping.cpp
+++ b/plugins/Ping/src/ping.cpp
@@ -1,4 +1,4 @@
-#include "common.h"
+#include "stdafx.h"
CLIST_INTERFACE *pcli;
HINSTANCE hInst;
@@ -24,13 +24,13 @@ PLUGININFOEX pluginInfo = {
{ 0x760ea901, 0xc0c2, 0x446c, { 0x80, 0x29, 0x94, 0xc3, 0xbc, 0x47, 0xc4, 0x5e } }
};
-extern "C" BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
+extern "C" BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD, LPVOID)
{
hInst = hinstDLL;
return TRUE;
}
-extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
+extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD)
{
return &pluginInfo;
}
@@ -66,7 +66,7 @@ void CreatePluginServices()
}
-int OnShutdown(WPARAM wParam, LPARAM lParam) {
+int OnShutdown(WPARAM, LPARAM) {
graphs_cleanup();
UnhookEvent(hFillListEvent);