message associted with number?
-
Hi All, I have implemented a simple application, the WndProc method handle all messages, but when I debug the application I could see only numbers, How can i know which message is associted with that perticular number? more precisely I want know which number(message) WndProc handles when I minimize the application?
-
Hi All, I have implemented a simple application, the WndProc method handle all messages, but when I debug the application I could see only numbers, How can i know which message is associted with that perticular number? more precisely I want know which number(message) WndProc handles when I minimize the application?
WM_SIZE & SIZE_MINIMIZED. winuser.h If you want to know all the definitions, just right click on any of the windows Constant. like WM_SIZE, then go to definition. You'll land up in the junkyard of windows definitions WinUser.h. But it'll be in Hex as you can see.So don't search for the exact number that you get in your WndProc. Sorry I'm editing the text for the zillionth time.- You should check for SIZE_MINIMIZED in wParam of the message.
He never answers anyone who replies to him. I've taken to calling him a retard, which is not fair to retards everywhere.-Christian Graus
modified on Friday, March 6, 2009 12:59 PM