![]() |
SetWindowsHookEx - Beendet Programme
Ich versuche mich gerade mit einem globalen Hook aber mir stürzen einfach der reihe nach programme ab, die beenden sich einfach so ...
Hat wer ne idee? (Werde es später dann statt dem WH_KEYBOARD mit dem WH_KEYBOARD_LL probieren für global) Das ist mein Versuchscode ....
Delphi-Quellcode:
Bin für alleVorschläge offen :D
function KeyboardHookProc(nCode: Integer; wParam: WPARAM; lParam: LPARAM): LRESULT; stdcall;
begin Result := CallNextHookEx(HookHandle, nCode, wParam, lParam); if nCode < 0 then exit; if (nCode = HC_ACTION) then begin OutputDebugString(PChar('Hook : '+IntToStr(nCode)+', '+IntToStr(wParam)+','+IntToStr(lParam))); end; end; function InstallHook(Hwnd: Cardinal): Boolean; stdcall; begin DisableThreadLibraryCalls(HInstance); Result := False; if HookHandle = 0 then begin HookHandle := SetWindowsHookEx(WH_KEYBOARD, @KeyboardHookProc, HInstance, 0); WindowHandle := Hwnd; Result := TRUE; end; end; function UninstallHook: Boolean; stdcall; begin Result := UnhookWindowsHookEx(HookHandle); HookHandle := 0; end; |
AW: SetWindowsHookEx - Beendet Programme
ah ok es schaut aus als ob es mit dem _LL funkt ......
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 03:11 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz