GetBoundsRect method

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

Implementation

int GetBoundsRect(
  ffi.Pointer<HDC__> hdc,
  ffi.Pointer<LPRECT> lprect,
  int flags,
) {
  return (_GetBoundsRect ??=
      _dylib.lookupFunction<_c_GetBoundsRect, _dart_GetBoundsRect>(
          'GetBoundsRect'))(
    hdc,
    lprect,
    flags,
  );
}