diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-09 21:05:43 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-02-09 21:05:43 +0000 |
commit | 34abc371842aa00d41bcd100fc26aa87f3c73880 (patch) | |
tree | 919caeec26e0c44ce776947aa04fbff26a9a8edd /plugins/NewXstatusNotify/src | |
parent | bf6a0ac020a2c35c0961bccc9b1f8aaf6b0a0033 (diff) |
git-svn-id: http://svn.miranda-ng.org/main/trunk@3507 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/NewXstatusNotify/src')
-rw-r--r-- | plugins/NewXstatusNotify/src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/NewXstatusNotify/src/main.cpp b/plugins/NewXstatusNotify/src/main.cpp index 74532987a7..2dadf9c32b 100644 --- a/plugins/NewXstatusNotify/src/main.cpp +++ b/plugins/NewXstatusNotify/src/main.cpp @@ -51,13 +51,13 @@ PLUGININFOEX pluginInfoEx = { "© 2001-2004 Luca Santarelli, 2005-2007 Vasilich, 2007-2011 yaho",
"http://miranda-ng.org/",
UNICODE_AWARE,
- { 0xebf19652, 0xe434, 0x4d79, { 0x98, 0x97, 0x91, 0xa0, 0xff, 0x22, 0x6f, 0x51 } }
+ // EBF19652-E434-4D79-9897-91A0FF226F51
+ {0xebf19652, 0xe434, 0x4d79, {0x98, 0x97, 0x91, 0xa0, 0xff, 0x22, 0x6f, 0x51}}
};
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
hInst = hinstDLL;
- DisableThreadLibraryCalls(hInst);
return TRUE;
}
|