ShowWindowAsync function user32

int ShowWindowAsync(
  1. int hWnd,
  2. int nCmdShow
)

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

BOOL ShowWindowAsync(
  HWND hWnd,
  int  nCmdShow
);

Implementation

int ShowWindowAsync(int hWnd, int nCmdShow) => _ShowWindowAsync(hWnd, nCmdShow);