DefWindowProc function user32
Calls the default window procedure to provide default processing for any window messages that an application does not process. This function ensures that every message is processed. DefWindowProc is called with the same parameters received by the window procedure.
LRESULT DefWindowProcW(
HWND hWnd,
UINT Msg,
WPARAM wParam,
LPARAM lParam
);
Implementation
int DefWindowProc(int hWnd, int Msg, int wParam, int lParam) =>
_DefWindowProc(hWnd, Msg, wParam, lParam);