diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-05-16 18:19:56 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-05-16 18:19:56 +0000 |
commit | 4653a5d7af56bf2697e2a9a87ddbc3f86a7fb541 (patch) | |
tree | 14c6c4d9b672bf75af43811ebb3e104495ce88b5 /plugins/wbOSD/main.cpp | |
parent | cf5350edbc17a09a8c5fb028ce7543bc5b8f4f33 (diff) |
- wbOSD: added to solutions
git-svn-id: http://svn.miranda-ng.org/main/trunk@4684 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/wbOSD/main.cpp')
-rw-r--r-- | plugins/wbOSD/main.cpp | 99 |
1 files changed, 0 insertions, 99 deletions
diff --git a/plugins/wbOSD/main.cpp b/plugins/wbOSD/main.cpp deleted file mode 100644 index d4d4cc260a..0000000000 --- a/plugins/wbOSD/main.cpp +++ /dev/null @@ -1,99 +0,0 @@ -/*
-Wannabe OSD
-This plugin tries to become miranda's standard OSD ;-)
-
-(C) 2005 Andrej Krutak
-
-Distributed under GNU's GPL 2 or later
-*/
-
-#include "wbOSD.h"
-#include "buildnumber.h"
-
-HINSTANCE hI;
-
-HWND hwnd=0;
-HANDLE hservosda;
-int hLangpack = 0;
-HANDLE hHookedNewEvent, hHookedInit, hProtoAck, hContactSettingChanged, hHookContactStatusChanged, hContactStatusChanged, hpluginShutDown;
-HINSTANCE hUser32;
-BOOL (WINAPI*pSetLayeredWindowAttributes)(HWND, COLORREF, BYTE, DWORD);
-
-void logmsg2(char *str);
-int MainInit(WPARAM,LPARAM);
-
-/////////////////////////////////////////////////////////////////////////////////////////
-
-static PLUGININFOEX pluginInfo = {
- sizeof(PLUGININFOEX),
- "WannaBe OSD",
- __VERSION_DWORD,
- "Show new message/status change info using onscreen display",
- "Andrej Krutak",
- "andree182 {at} gmail (dot) com",
- "©2005 Andrej Krutak",
- "http://urtax.ms.mff.cuni.cz/~andree/",
- UNICODE_AWARE,
- { 0xfc718bc7, 0xabc8, 0x43cd, { 0xaa, 0xd9, 0x76, 0x16, 0x14, 0x61, 0x77, 0x38 } } // {FC718BC7-ABC8-43CD-AAD9-761614617738}
-};
-
-extern "C" __declspec(dllexport) PLUGININFOEX *MirandaPluginInfoEx(DWORD)
-{
- return &pluginInfo;
-}
-
-/////////////////////////////////////////////////////////////////////////////////////////
-
-extern "C" __declspec(dllexport) int Load()
-{
- mir_getLP(&pluginInfo);
-
- logmsg("Load");
- pSetLayeredWindowAttributes=0;
-
-#ifndef FORCE_9XDRAWING
- hUser32=LoadLibrary(_T("user32.dll"));
-#else
- hUser32=0;
-#endif
-
- if (hUser32) {
- pSetLayeredWindowAttributes=(BOOL(WINAPI*)(HWND, COLORREF, BYTE, DWORD))GetProcAddress(hUser32, "SetLayeredWindowAttributes");
- if (!pSetLayeredWindowAttributes) {
- FreeLibrary(hUser32);
- hUser32=0;
- }
- }
-
- hHookedInit = HookEvent(ME_SYSTEM_MODULESLOADED, MainInit);
- return 0;
-}
-
-/////////////////////////////////////////////////////////////////////////////////////////
-
-extern "C" __declspec(dllexport) int Unload()
-{
- logmsg("Unload");
- UnhookEvent(hpluginShutDown);
- UnhookEvent(hProtoAck);
- UnhookEvent(hContactSettingChanged);
- UnhookEvent(hContactStatusChanged);
- UnhookEvent(hHookedNewEvent);
- UnhookEvent(hHookedInit);
-
- if (hUser32)
- FreeLibrary(hUser32);
- pSetLayeredWindowAttributes=0;
-
- DestroyServiceFunction(hservosda);
- DestroyHookableEvent(hHookContactStatusChanged);
- return 0;
-}
-
-/////////////////////////////////////////////////////////////////////////////////////////
-
-BOOL WINAPI DllMain(HINSTANCE hinst,DWORD fdwReason,LPVOID lpvReserved)
-{
- hI = hinst;
- return TRUE;
-}
|