SendNotifyMessage function user32
Sends the specified message to a window or windows.
To learn more, see learn.microsoft.com/windows/win32/api/winuser/nf-winuser-sendnotifymessagew.
Implementation
Win32Result<bool> SendNotifyMessage(
HWND hWnd,
int msg,
WPARAM wParam,
LPARAM lParam,
) {
final result_ = SendNotifyMessageW_Wrapper(hWnd, msg, wParam, lParam);
return Win32Result(value: result_.value.i32 != FALSE, error: result_.error);
}