WNDPROC typedef

WNDPROC = LRESULT Function(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)

Application-defined callback function that processes messages sent to a window.

Implementation

typedef WNDPROC = LRESULT Function(
    HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);