GetLargestConsoleWindowSize function kernel32

COORD GetLargestConsoleWindowSize(
  1. int hConsoleOutput
)

Retrieves the size of the largest possible console window, based on the current font and the size of the display.

COORD GetLargestConsoleWindowSize(
  _In_ HANDLE hConsoleOutput
);

Implementation

COORD GetLargestConsoleWindowSize(int hConsoleOutput) =>
    _GetLargestConsoleWindowSize(hConsoleOutput);