function MouseProc(nCode: integer; wParam: WParam; lParam: LParam): LRESULT; stdcall;
begin
  Result := 0;
  if nCode < 0 then
    Result := CallNextHookEx(MHookHandle, nCode, wParam, lParam)
  else                                            
  begin
    //Rule of API call, which referred to Win32 Hooks topic in MSDN
    case wParam of    //鼠标左键或右键单击
      WM_LBUTTONUP, WM_NCLBUTTONUP, WM_RBUTTONUP:
        SendMessage(pSharedMem^.InstHandle, pSharedMem^.MessageID, 0, 500);
      WM_MOUSEMOVE:
      begin
        if FIsNew = False then
          SendMessage(pSharedMem^.InstHandle, pSharedMem^.MessageID, 0, 500);
      end;  
    //Sends Message to Instance to which was injected this DLL
    end;    // case
  end;end;
function KeyboardProc(nCode: Integer; WPARAM: wParam; LPARAM: lParam): LRESULT; stdcall;
var
  i: Integer;
  nState: SHORT;//得到键盘状态的GetKeyState函数的返回值。这是一个16位的数。
begin
  Result := 0;
  if nCode < 0 then
    Result := CallNextHookEx(KHookHandle, nCode, wParam, lParam)
  else
  begin
    if (nCode = HC_ACTION) and (((lParam shr 30) and $F) = 0) then
    begin
      for I := 0 to 1 do begin    // Iterate
        nState := GetKeyState(G_KeyValArr.ModKey);//
        if (nState and $80000000) = $80000000 then
        begin
          if (WPARAM = Ord(G_KeyValArr.key)) then
          begin
            if i = 0 then    
              SendMessage(pSharedMem^.InstHandle, pSharedMem^.MessageID, 1, WPARAM)
            else if i = 1 then      
              SendMessage(pSharedMem^.InstHandle, pSharedMem^.MessageID, 2, WPARAM);
            FLastStuTime := GetTickCount;
            Break;
          end
          else   
          begin
            if (GetTickCount - FLastStuTime) > 1000 then
              SendMessage(pSharedMem^.InstHandle, pSharedMem^.MessageID, 3, WPARAM);
          end;
        end;
      end;
    end
    else  
    begin
      if (GetTickCount - FLastStuTime) > 1000 then
        SendMessage(pSharedMem^.InstHandle, pSharedMem^.MessageID, 3, WPARAM);
    end;
    Result := CallNextHookEx(KHookHandle, nCode, wParam, lParam);
  end;end;

相关文章:

  • 2022-01-16
  • 2021-10-04
  • 2021-08-15
  • 2022-12-23
  • 2022-12-23
  • 2022-01-02
  • 2021-11-29
猜你喜欢
  • 2021-11-24
  • 2022-12-23
  • 2021-10-26
  • 2022-12-23
  • 2021-12-31
  • 2022-12-23
相关资源
相似解决方案