Home > Back-end >  Global mouse hook be blocked (individual)
Global mouse hook be blocked (individual)

Time:09-18

I use the SetWindowsHookEx (WH_MOUSE_LL, (HOOKPROC) (LowLevelMouseProc), ghInstance, NULL); Created a global mouse hook, which is used to monitor the double-click, found that some program after double-click, cannot be monitored, this hook, double-click the desktop has feedback, global mouse hook can also blocked?

CodePudding user response:

Virtue dwarfs vice hunted

CodePudding user response:

Ha ha, it's not, it is not in order to block my program and shielding,

CodePudding user response:

Can be blocked

CodePudding user response:

Can not let the mask?

CodePudding user response:

I recently also made global hooks, the game can login screen, get to the game, the failure

CodePudding user response:

Your question is like
A lot of people's wallet is transparent, you can literally see,
The wallet is private individuals, you can't see,
Now you have to ask, can you people's wallet is transparent, I want to see,
Play a lot of prevent plugins, did some means,
Use common method won't work unless you use more of the underlying methods,
Words here, can understand understand, understand rote memorization,

CodePudding user response:

Less complicated, first of all is 64/32 bit interoperability problem, if you have a HOOK procedure in a 32-bit DLL, it into a 64 - bit process, and vice versa, so you have to HOOK for all processes, you must install a 32-bit HOOK and a 64 - bit HOOK, second, if you don't call CallNextHookEx after installation of the hooks, before the installation of the same type of HOOK won't work,
  • Related