CWindowImpl::DefWindowProc
LRESULT DefWindowProc( UINT uMsg**, WPARAM** wParam**, LPARAM** lParam );
LRESULT DefWindowProc( );
Return Value
The result of the message processing.
Parameters
uMsg
[in] The message sent to the window.
wParam
[in] Additional message-specific information.
lParam
[in] Additional message-specific information.
Remarks
Called by WindowProc to process messages not handled by the message map. By default, DefWindowProc calls the Win32 function to send the message information to the window procedure specified in m_pfnSuperWindowProc.
The function with no parameters automatically retrieves the needed parameters from the current message.