CWnd::DefWindowProc

Calls the default window procedure, which provides default processing for any window message that an application does not process.

virtual LRESULT DefWindowProc(
   UINT message,
   WPARAM wParam,
   LPARAM lParam 
);

Параметры

  • message
    Specifies the Windows message to be processed.

  • wParam
    Specifies additional message-dependent information.

  • lParam
    Specifies additional message-dependent information.

Возвращаемое значение

Depends on the message sent.

Заметки

This member function ensures that every message is processed. It should be called with the same parameters as those received by the window procedure.

Требования

Header: afxwin.h

См. также

Основные понятия

CWnd Class

CWnd Members

Hierarchy Chart

CWnd::Default

DefWindowProc