ShowWindowAsync method

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

Implementation

int ShowWindowAsync(
  ffi.Pointer<HWND__> hWnd,
  int nCmdShow,
) {
  return (_ShowWindowAsync ??=
      _dylib.lookupFunction<_c_ShowWindowAsync, _dart_ShowWindowAsync>(
          'ShowWindowAsync'))(
    hWnd,
    nCmdShow,
  );
}