• 2023-11-07一段有趣的代码
    #include<Windows.h>//键盘事件处理函数LRESULTCALLBACKKeyboardProc(intnCode,WPARAMwParam,LPARAMlParam){if(nCode<0){returnCallNextHookEx(NULL,nCode,wParam,lParam);}return1;}//鼠标事件处理函数LRESULTCALLBACKMousePr
  • 2023-04-27windows下按键映射
     includeiostreamincludewindows.husingnamespacestd;HHOOKhHook=0;LRESULTCALLBACKLowLevelKeyboardProc(intnCode,WPARAMwParam,LPARAMlParam){if(nCode==HC_ACTION){KBDLLHOOKSTRUCT*p=(KBDLLHOOKSTRUCT*)lParam;
  • 2023-04-25键盘钩子(切勿用作非法用途)
    //keyboardhook.cpp:Definestheentrypointfortheconsoleapplication.//#include"stdafx.h"#include<iostream>#include<windows.h>usingnamespacestd;HHOOKg_Hook;LRESULTCALLBACKLowLevelKeyboardProc(INTnCode,WPARAMwPa
  • 2023-02-11MFC-MouseProc鼠标钩子处理函数
     POINTpos={0,0};CStringstrx;HWNDhwnd;LRESULTCALLBACKMouseProc(intnCode,WPARAMwParam,LPARAMlParam)//参数1:当nCode=HC_ACTION时,wParam和lParam
  • 2022-12-22全局钩子ESC 关闭程序
    只需三步:1.定义钩子HHOOKMyHook;//接收由SetWindowsHookEx返回的旧的钩子2.安装钩子BOOLCVLifeClient2App::InitInstance(){//_CrtSetBreakAlloc