AdjustWindowRectEx method

int AdjustWindowRectEx(
  1. Pointer<LPRECT> lpRect,
  2. int dwStyle,
  3. int bMenu,
  4. int dwExStyle,
)

Implementation

int AdjustWindowRectEx(
  ffi.Pointer<LPRECT> lpRect,
  int dwStyle,
  int bMenu,
  int dwExStyle,
) {
  return (_AdjustWindowRectEx ??=
      _dylib.lookupFunction<_c_AdjustWindowRectEx, _dart_AdjustWindowRectEx>(
          'AdjustWindowRectEx'))(
    lpRect,
    dwStyle,
    bMenu,
    dwExStyle,
  );
}