DefSubclassProc function comctl32
Calls the next handler in a window's subclass chain. The last handler in the subclass chain calls the original window procedure for the window.
LRESULT DefSubclassProc(
HWND hWnd,
UINT uMsg,
WPARAM wParam,
LPARAM lParam
);
Implementation
int DefSubclassProc(int hWnd, int uMsg, int wParam, int lParam) =>
_DefSubclassProc(hWnd, uMsg, wParam, lParam);