SendMessageTimeout function user32
Sends the specified message to one or more windows.
LRESULT SendMessageTimeoutW(
HWND hWnd,
UINT Msg,
WPARAM wParam,
LPARAM lParam,
UINT fuFlags,
UINT uTimeout,
PDWORD_PTR lpdwResult
);
Implementation
int SendMessageTimeout(int hWnd, int Msg, int wParam, int lParam, int fuFlags,
int uTimeout, Pointer<IntPtr> lpdwResult) =>
_SendMessageTimeout(
hWnd, Msg, wParam, lParam, fuFlags, uTimeout, lpdwResult);