Registriert seit: 16. Jan 2004
Ort: Bendorf
5.219 Beiträge
Delphi 10.2 Tokyo Professional
|
AW: Kleine Verständnisfrage zu globalen Hooks
18. Jan 2011, 13:02
Hallo,
Ja doch ich rufe CallNextHook dann gar nicht auf. Aber das Problem taucht ja irgendwie auch erst auf, wenn ich den Hook deinstallieren will.
Mein Code:
Delphi-Quellcode:
function HookProc(code: Integer; wParam: Cardinal; lParam: Cardinal): Cardinal; stdcall;
begin
if FHook <> 0 then
begin
if code < HC_ACTION then
Result := CallNextHookEx(FHook,code,wParam,lParam)
else
begin
// Code
Result := CallNextHookEx(FHook,code,wParam,lParam);
end;
end
else
Result := 0;
end;
Michael "Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."
|
|
Zitat
|