AdjustWindowRectEx method
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,
);
}