About Store Forum Documentation Contact



Post Reply 
Window Message Proc
Author Message
fatcoder Offline
Member

Post: #1
Window Message Proc
Is there anyway to access the messages from the application's window message proc?

I'm try to integrate a 3rd party product into EE and it requires window messages to be injected so it can respond to them.

I've considered doing something like this in the update() function.

Code:
MSG msg;
if(PeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE))
   InjectMessage(msg);

Any other options, or will this work?
01-27-2012 03:45 PM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #2
RE: Window Message Proc
I'm not sure but I think there's some WinApi func to override the win proc message
there would be layers :
yourCallback -> EECallback -> SystemFunc
but I'm not sure
01-30-2012 08:03 PM
Find all posts by this user Quote this message in a reply
Post Reply