GetUpdateRect method

int GetUpdateRect(
  1. Pointer<HWND__> hWnd,
  2. Pointer<LPRECT> lpRect,
  3. int bErase
)

Implementation

int GetUpdateRect(
  ffi.Pointer<HWND__> hWnd,
  ffi.Pointer<LPRECT> lpRect,
  int bErase,
) {
  return (_GetUpdateRect ??=
      _dylib.lookupFunction<_c_GetUpdateRect, _dart_GetUpdateRect>(
          'GetUpdateRect'))(
    hWnd,
    lpRect,
    bErase,
  );
}