From: Lisa Pearlson on
Hi,

I tried:

HMODULE hDLL = LoadLibrary(_T("coredll.dll"));
SetWindowsHookEx = (HHSETHOOK) GetProcAddress(hDLL, _T("SetWindowsHookEx"));
....

But this function seems not exported (anymore).
Is there another way to catch WM_MOUSE messages system wide?

If you tell me to inject a dll, how can I do this? Some application should
load this dll, so does this mean I must make a dll and an exe to load it, or
create a services.exe dll?

Lisa