SetConsoleWindowInfo function kernel32
Sets the current size and position of a console screen buffer's window.
BOOL SetConsoleWindowInfo(
_In_ HANDLE hConsoleOutput,
_In_ BOOL bAbsolute,
_In_ const SMALL_RECT *lpConsoleWindow
);
Implementation
int SetConsoleWindowInfo(
int hConsoleOutput,
int bAbsolute,
Pointer<SMALL_RECT> lpConsoleWindow,
) => _SetConsoleWindowInfo(hConsoleOutput, bAbsolute, lpConsoleWindow);