static LRESULT CALLBACK DialogProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam );
Return Value
TRUE if the message is processed; otherwise, FALSE.
Parameters
hWnd
[in] The handle to the dialog box.
uMsg
[in] The message sent to the dialog box.
wParam
[in] Additional message-specific information.
lParam
[in] Additional message-specific information.
Remarks
This static method implements the dialog box procedure. DialogProc uses the default message map to direct messages to the appropriate handlers.
You can override DialogProc to provide a different mechanism for handling messages.
CDialogImpl Overview | Class Members
See Also