SetWindowPlacement method

int SetWindowPlacement(
  1. Pointer<HWND__> hWnd,
  2. Pointer<WINDOWPLACEMENT> lpwndpl
)

Implementation

int SetWindowPlacement(
  ffi.Pointer<HWND__> hWnd,
  ffi.Pointer<WINDOWPLACEMENT> lpwndpl,
) {
  return (_SetWindowPlacement ??=
      _dylib.lookupFunction<_c_SetWindowPlacement, _dart_SetWindowPlacement>(
          'SetWindowPlacement'))(
    hWnd,
    lpwndpl,
  );
}