ShowWindow function user32

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

Sets the specified window's show state.

BOOL ShowWindow(
  HWND hWnd,
  int  nCmdShow
);

Implementation

int ShowWindow(int hWnd, int nCmdShow) => _ShowWindow(hWnd, nCmdShow);