# CsHook **Repository Path**: ywxtcw/CsHook ## Basic Information - **Project Name**: CsHook - **Description**: c#简单鼠标键盘钩子演示 - **Primary Language**: C# - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 5 - **Forks**: 2 - **Created**: 2016-07-29 - **Last Updated**: 2024-02-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Hook演示 钩子用处很多,比如鼠标点击特效,键盘记录,还可实现快捷键。 ##### 关于GetCurrentThreadId()的声明 ```c# [DllImport("kernel32.dll")] static extern uint GetCurrentThreadId();//返回值可改为IntPtr ```