GetLargestConsoleWindowSize function kernel32
Retrieves the size of the largest possible console window, based on the current font and the size of the display.
COORD WINAPI GetLargestConsoleWindowSize(
_In_ HANDLE hConsoleOutput
);
Implementation
COORD GetLargestConsoleWindowSize(int hConsoleOutput) =>
_GetLargestConsoleWindowSize(hConsoleOutput);