ShowWindow method

int ShowWindow(
  1. Pointer<HWND__> hWnd,
  2. int nCmdShow
)

Implementation

int ShowWindow(
  ffi.Pointer<HWND__> hWnd,
  int nCmdShow,
) {
  return _ShowWindow(
    hWnd,
    nCmdShow,
  );
}