SetRect method
Implementation
int SetRect(
ffi.Pointer<LPRECT> lprc,
int xLeft,
int yTop,
int xRight,
int yBottom,
) {
return (_SetRect ??=
_dylib.lookupFunction<_c_SetRect, _dart_SetRect>('SetRect'))(
lprc,
xLeft,
yTop,
xRight,
yBottom,
);
}