Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at MessageHandler.
MessageHandler** is the name of the function identified by the second parameter of the MESSAGE_HANDLER macro in your message map.
Syntax
LRESULT
MessageHandler
(
UINT uMsg,
WPARAM wParam,
LPARAM lParam,
BOOL& bHandled);
Parameters
uMsg
Specifies the message.
wParam
Additional message-specific information.
lParam
Additional message-specific information.
bHandled
The message map sets bHandled to TRUE before MessageHandler is called. If MessageHandler does not fully handle the message, it should set bHandled to FALSE to indicate the message needs further processing.
Return Value
The result of message processing. 0 if successful.
Remarks
For an example of using this message handler in a message map, see MESSAGE_HANDLER.