CreateRectRgn method
Implementation
ffi.Pointer<HRGN__> CreateRectRgn(
int x1,
int y1,
int x2,
int y2,
) {
return (_CreateRectRgn ??=
_dylib.lookupFunction<_c_CreateRectRgn, _dart_CreateRectRgn>(
'CreateRectRgn'))(
x1,
y1,
x2,
y2,
);
}