I am making a little tool like Displayfusion and I need some Hooks to receive messages when Windows move/activate/etc , however I'm stuck..

I am using this project for the CallWndProc hook: http://www.codeproject.com/KB/system/WilsonSystemGlobalHooks.aspx

For pretty much all windows it works great(x86 and x64), however on some windows it seems to can't inject the hook DLL. Currently I am having problems with adobe reader X. No messages are being received from that window. I think it has something to do with the sandbox? Can somebody give me a push in the right direction?

The initialization code for the hook:

bool InitializeCallWndProcHook(int threadID, HWND destination)
{
  if (g_appInstance == NULL)
    return false;

  if (GetProp(GetDesktopWindow(), "WILSON_HOOK_HWND_CALLWNDPROC") != NULL)
    SendNotifyMessage((HWND)GetProp(GetDesktopWindow(), "WILSON_HOOK_HWND_CALLWNDPROC"), RegisterWindowMessage("WILSON_HOOK_CALLWNDPROC_REPLACED"), 0, 0);

  SetProp(GetDesktopWindow(), "WILSON_HOOK_HWND_CALLWNDPROC", destination);
  hookCallWndProc = SetWindowsHookEx(WH_CALLWNDPROC, (HOOKPROC)CallWndProcHookCallback, g_appInstance, threadID);

  return hookCallWndProc != NULL;
}
link|improve this question

64% accept rate
Adobe is the kind of company that worries a great deal about security. Flash is obvious, but Reader is no exception, given that it can display documents that prevent copy/pasting. You'll need to contact them for support. – Hans Passant Oct 13 '11 at 13:20
feedback

2 Answers

Hmm, try if Spy++ can catch the messages. If it can, then obviously it's not a problem with security measures. It Spy++ can't however, then it's pretty much impossible.

See if this works: Use both WH_CALLWNDPROC and WH_GETMESSAGE hooks, since apparently, the former only catches sent message, and the latter only catches posted messages.

link|improve this answer
I just tried it with Spy++, and Spy++ is able to receive messages from adobe reader X. I will try both both WH_CALLWNDPROC and WH_GETMESSAGE hooks as soon as I have some spare time. – Jelle Jan 12 at 21:32
feedback

I'm using same code, but have problems in x64bit, can you share the changes on "WilsonSystemGlobalHooks.aspx" code, to work in x64?

Thanks I find the prob

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.