SetWindowPlacement function user32

int SetWindowPlacement(
  1. int hWnd,
  2. Pointer<WINDOWPLACEMENT> lpwndpl
)

Sets the show state and the restored, minimized, and maximized positions of the specified window.

BOOL SetWindowPlacement(
  HWND                  hWnd,
  const WINDOWPLACEMENT *lpwndpl
);

Implementation

int SetWindowPlacement(int hWnd, Pointer<WINDOWPLACEMENT> lpwndpl) =>
    _SetWindowPlacement(hWnd, lpwndpl);