GetConsoleScreenBufferInfo function kernel32

int GetConsoleScreenBufferInfo(
  1. int hConsoleOutput,
  2. Pointer<CONSOLE_SCREEN_BUFFER_INFO> lpConsoleScreenBufferInfo
)

Retrieves information about the specified console screen buffer.

BOOL GetConsoleScreenBufferInfo(
  _In_  HANDLE                      hConsoleOutput,
  _Out_ PCONSOLE_SCREEN_BUFFER_INFO lpConsoleScreenBufferInfo
);

Implementation

int GetConsoleScreenBufferInfo(
  int hConsoleOutput,
  Pointer<CONSOLE_SCREEN_BUFFER_INFO> lpConsoleScreenBufferInfo,
) => _GetConsoleScreenBufferInfo(hConsoleOutput, lpConsoleScreenBufferInfo);