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