ShowWindowAsync function user32

bool ShowWindowAsync(
  1. HWND hWnd,
  2. SHOW_WINDOW_CMD nCmdShow
)

Sets the show state of a window without waiting for the operation to complete.

To learn more, see learn.microsoft.com/windows/win32/api/winuser/nf-winuser-showwindowasync.

Implementation

@pragma('vm:prefer-inline')
bool ShowWindowAsync(HWND hWnd, SHOW_WINDOW_CMD nCmdShow) =>
    _ShowWindowAsync(hWnd, nCmdShow) != FALSE;