CallNextHookEx function user32
Passes the hook information to the next hook procedure in the current hook chain. A hook procedure can call this function either before or after processing the hook information.
LRESULT CallNextHookEx(
HHOOK hhk,
int nCode,
WPARAM wParam,
LPARAM lParam
);
Implementation
int CallNextHookEx(int hhk, int nCode, int wParam, int lParam) =>
_CallNextHookEx(hhk, nCode, wParam, lParam);