SetBoundsRect method

int SetBoundsRect(
  1. Pointer<HDC__> hdc,
  2. Pointer<LPRECT> lprect,
  3. int flags
)

Implementation

int SetBoundsRect(
  ffi.Pointer<HDC__> hdc,
  ffi.Pointer<LPRECT> lprect,
  int flags,
) {
  return (_SetBoundsRect ??=
      _dylib.lookupFunction<_c_SetBoundsRect, _dart_SetBoundsRect>(
          'SetBoundsRect'))(
    hdc,
    lprect,
    flags,
  );
}