diff options
author | George Hazan <george.hazan@gmail.com> | 2015-07-31 21:02:53 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-07-31 21:02:53 +0000 |
commit | aa7b69500fc5ce34840076de537dbfab2c31ab81 (patch) | |
tree | fc035b4b454e47dc050bafa9e4eb695a90cff725 /plugins/SMS/src/main.cpp | |
parent | ae310cd45dcc29c5f9f55734fbf42d136ace8240 (diff) |
warning fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@14774 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SMS/src/main.cpp')
-rw-r--r-- | plugins/SMS/src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/SMS/src/main.cpp b/plugins/SMS/src/main.cpp index 4d741bdba6..d5f135482d 100644 --- a/plugins/SMS/src/main.cpp +++ b/plugins/SMS/src/main.cpp @@ -47,7 +47,7 @@ PLUGININFOEX pluginInfo = { {0xcf97fd5d, 0xb911, 0x47a8, {0xaf, 0x3, 0xd2, 0x19, 0x68, 0xb5, 0xb8, 0x94}}
};
-extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
+extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD)
{
return &pluginInfo;
}
@@ -56,7 +56,7 @@ int OnModulesLoaded (WPARAM wParam,LPARAM lParam); int OnPreShutdown (WPARAM wParam,LPARAM lParam);
void VersionConversions();
-BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpvReserved)
+BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID)
{
switch(dwReason) {
case DLL_PROCESS_ATTACH:
|