ShowWindow function user32

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

Sets the specified window's show state.

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

Implementation

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