summaryrefslogtreecommitdiff
path: root/plugins/Exchange/src/exchange.cpp
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2015-05-17 21:20:54 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2015-05-17 21:20:54 +0000
commit0fc666ba4c6939b51e25d0175928f9b0eb64a938 (patch)
tree559520c0cb2b273e64015df1db895102c5414617 /plugins/Exchange/src/exchange.cpp
parent6cd9de08e7748f894d14ce1947fcd8086ad0c175 (diff)
Exchange: unified project
git-svn-id: http://svn.miranda-ng.org/main/trunk@13666 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Exchange/src/exchange.cpp')
-rw-r--r--plugins/Exchange/src/exchange.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Exchange/src/exchange.cpp b/plugins/Exchange/src/exchange.cpp
index 94b199adcf..97ef9250bb 100644
--- a/plugins/Exchange/src/exchange.cpp
+++ b/plugins/Exchange/src/exchange.cpp
@@ -18,7 +18,7 @@ along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#include "commonheaders.h"
+#include "stdafx.h"
char ModuleName[] = "ExchangeNotify";
HINSTANCE hInstance;
@@ -45,7 +45,7 @@ PLUGININFOEX pluginInfo = {
//OLD_MIRANDAPLUGININFO_SUPPORT;
-extern "C" __declspec(dllexport) PLUGININFOEX *MirandaPluginInfoEx(DWORD mirandaVersion)
+extern "C" __declspec(dllexport) PLUGININFOEX *MirandaPluginInfoEx(DWORD)
{
// Log("%s", "Entering function " __FUNCTION__);
// Log("%s", "Leaving function " __FUNCTION__);
@@ -83,7 +83,7 @@ extern "C" int __declspec(dllexport) Unload()
return 0;
}
-extern "C" bool WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID lpvReserved)
+extern "C" bool WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID)
{
hInstance = hinstDLL; //save global instance
if (fdwReason == DLL_PROCESS_ATTACH)