RoundRect method
Implementation
int RoundRect(
ffi.Pointer<HDC__> hdc,
int left,
int top,
int right,
int bottom,
int width,
int height,
) {
return (_RoundRect ??=
_dylib.lookupFunction<_c_RoundRect, _dart_RoundRect>('RoundRect'))(
hdc,
left,
top,
right,
bottom,
width,
height,
);
}