SetRectEmpty function Null safety user32
The SetRectEmpty function creates an empty rectangle in which all coordinates are set to zero.
BOOL SetRectEmpty(
LPRECT lprc
);
Implementation
int SetRectEmpty(Pointer<RECT> lprc) {
final _SetRectEmpty = _user32.lookupFunction<
Int32 Function(Pointer<RECT> lprc),
int Function(Pointer<RECT> lprc)>('SetRectEmpty');
return _SetRectEmpty(lprc);
}