AdjustWindowRect method
Implementation
int AdjustWindowRect(
ffi.Pointer<LPRECT> lpRect,
int dwStyle,
int bMenu,
) {
return (_AdjustWindowRect ??=
_dylib.lookupFunction<_c_AdjustWindowRect, _dart_AdjustWindowRect>(
'AdjustWindowRect'))(
lpRect,
dwStyle,
bMenu,
);
}