summaryrefslogtreecommitdiff
path: root/plugins/Exchange
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-03-28 14:28:40 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-03-28 14:28:40 +0300
commitd75fed3bfc9c252f5d20b889e0bec95fb0a4527e (patch)
treea3a03ab5afcb6441f1a29c995b240fc6ff0785bc /plugins/Exchange
parent9ee90b86b0be67b64b650bfd349a13829a48efb5 (diff)
code cleaning
Diffstat (limited to 'plugins/Exchange')
-rw-r--r--plugins/Exchange/src/exchange.cpp30
-rw-r--r--plugins/Exchange/src/stdafx.h3
2 files changed, 9 insertions, 24 deletions
diff --git a/plugins/Exchange/src/exchange.cpp b/plugins/Exchange/src/exchange.cpp
index 0a0ef5f291..d9932b1b80 100644
--- a/plugins/Exchange/src/exchange.cpp
+++ b/plugins/Exchange/src/exchange.cpp
@@ -38,14 +38,10 @@ PLUGININFOEX pluginInfo = {
__AUTHORWEB,
UNICODE_AWARE,
{0x2fd0df15, 0x7098, 0x41ce, {0xaa, 0x92, 0xff, 0x62, 0x18, 0x06, 0xe3, 0x8b}} //{2fd0df15-7098-41ce-aa92-ff621806e38b}
-}; //not used
-
-//OLD_MIRANDAPLUGININFO_SUPPORT;
+};
extern "C" __declspec(dllexport) PLUGININFOEX *MirandaPluginInfoEx(DWORD)
{
-// Log("%s", "Entering function " __FUNCTION__);
-// Log("%s", "Leaving function " __FUNCTION__);
return &pluginInfo;
}
@@ -53,39 +49,27 @@ extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = {MIID_EXCHANG
extern "C" int __declspec(dllexport) Load()
{
-// Log("%s", "Entering function " __FUNCTION__);
- //pluginLink = link;
mir_getLP( &pluginInfo );
-// Log("%s", "Initialising miranda memory functions");
-// InitializeMirandaMemFunctions();
hiMailIcon = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_MAIL));
-// Log("%s", "Creating service functions ...");
InitServices();
-// Log("%s", "Hooking events ...");
HookEvents();
return 0;
}
extern "C" int __declspec(dllexport) Unload()
{
-// Log("%s", "Entering function " __FUNCTION__);
-// Log("%s", "Unhooking events ...");
-
-// Log("%s", "Destroying service functions ...");
DestroyServices();
-// DestroyEvents();
UnhookEvents();
-
-// Log("%s", "Leaving function " __FUNCTION__);
return 0;
}
-extern "C" bool WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID)
+/////////////////////////////////////////////////////////////////////////////////////////
+
+BOOL WINAPI DllMain(HINSTANCE hinstDLL,DWORD fdwReason,LPVOID)
{
hInstance = hinstDLL; //save global instance
if (fdwReason == DLL_PROCESS_ATTACH)
- {
- DisableThreadLibraryCalls(hinstDLL);
- }
+ DisableThreadLibraryCalls(hinstDLL);
+
return TRUE;
-} \ No newline at end of file
+}
diff --git a/plugins/Exchange/src/stdafx.h b/plugins/Exchange/src/stdafx.h
index 54a29c3752..1358ddbb07 100644
--- a/plugins/Exchange/src/stdafx.h
+++ b/plugins/Exchange/src/stdafx.h
@@ -39,7 +39,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include <m_options.h>
#include <m_clist.h>
#include <m_langpack.h>
-#include "m_utils.h"
+#include <m_utils.h>
+#include <m_plugin.h>
#include "resource.h"
#include "version.h"