ShowWindow method

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

Implementation

int ShowWindow(
  ffi.Pointer<HWND__> hWnd,
  int nCmdShow,
) {
  return (_ShowWindow ??=
      _dylib.lookupFunction<_c_ShowWindow, _dart_ShowWindow>('ShowWindow'))(
    hWnd,
    nCmdShow,
  );
}