diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-22 10:48:36 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-22 10:48:36 +0000 |
commit | d5aa68bc585710dcb741ac2cd545c21410b0af7e (patch) | |
tree | 3bd7a1bdd0d4ca15a0fda106de74e5c8227e00b1 /plugins/Scriver/src/srmm.cpp | |
parent | 34c8d175d77f8e9d786b41fc8ed87d6816829fc8 (diff) |
hooking loading/unloading plugin events
git-svn-id: http://svn.miranda-ng.org/main/trunk@3687 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Scriver/src/srmm.cpp')
-rw-r--r-- | plugins/Scriver/src/srmm.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/Scriver/src/srmm.cpp b/plugins/Scriver/src/srmm.cpp index 5ec4354e9f..2f6204da9c 100644 --- a/plugins/Scriver/src/srmm.cpp +++ b/plugins/Scriver/src/srmm.cpp @@ -43,7 +43,8 @@ PLUGININFOEX pluginInfo = { "Copyright (c) 2000-2012 Miranda IM Project, 2012-2013 Miranda NG Project",
"http://miranda-ng.org/",
UNICODE_AWARE,
- {0x84636f78, 0x2057, 0x4302, { 0x8a, 0x65, 0x23, 0xa1, 0x6d, 0x46, 0x84, 0x4c }} //{84636F78-2057-4302-8A65-23A16D46844C}
+ //{84636F78-2057-4302-8A65-23A16D46844C}
+ {0x84636f78, 0x2057, 0x4302, {0x8a, 0x65, 0x23, 0xa1, 0x6d, 0x46, 0x84, 0x4c}}
};
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
@@ -61,8 +62,6 @@ extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = {MIID_SRMM, M extern "C" __declspec(dllexport) int Load(void)
{
-
-
// set the memory manager
mir_getTMI(&tmi);
mir_getLP( &pluginInfo );
|