BeginDeferWindowPos function user32
Allocates memory for a multiple-window- position structure and returns the handle to the structure.
To learn more, see learn.microsoft.com/windows/win32/api/winuser/nf-winuser-begindeferwindowpos.
Implementation
Win32Result<HDWP> BeginDeferWindowPos(int nNumWindows) {
final result_ = BeginDeferWindowPos_Wrapper(nNumWindows);
return Win32Result(value: HDWP(result_.value.ptr), error: result_.error);
}