ON_REGISTERED_MESSAGE
Visual Studio .NET 2003
The Windows RegisterWindowMessage function is used to define a new window message that is guaranteed to be unique throughout the system.
ON_REGISTERED_MESSAGE(nMessageVariable, memberFxn )
Parameters
- nMessageVariable
- The registered window-message ID variable.
- memberFxn
- The name of the message-handler function to which the message is mapped.
Remarks
This macro indicates which function will handle the registered message.
For more information and examples, see Message Handling and Mapping Topics.
Example
// example for ON_REGISTERED_MESSAGE
const UINT wm_Find = RegisterWindowMessage( FINDMSGSTRING );
BEGIN_MESSAGE_MAP( CMyWnd, CMyParentWndClass )
ON_REGISTERED_MESSAGE( wm_Find, OnFind )
// ... Possibly more entries to handle additional messages
END_MESSAGE_MAP( )
See Also
MFC Macros and Globals | ON_MESSAGE | ON_UPDATE_COMMAND_UI | ON_CONTROL | ON_COMMAND | RegisterWindowMessage | User-Defined Handlers