GetConsoleScreenBufferInfo function kernel32
int
GetConsoleScreenBufferInfo(
- int hConsoleOutput,
- Pointer<
CONSOLE_SCREEN_BUFFER_INFO> lpConsoleScreenBufferInfo
Retrieves information about the specified console screen buffer.
BOOL WINAPI GetConsoleScreenBufferInfo(
_In_ HANDLE hConsoleOutput,
_Out_ PCONSOLE_SCREEN_BUFFER_INFO lpConsoleScreenBufferInfo
);
Implementation
int GetConsoleScreenBufferInfo(int hConsoleOutput,
Pointer<CONSOLE_SCREEN_BUFFER_INFO> lpConsoleScreenBufferInfo) =>
_GetConsoleScreenBufferInfo(hConsoleOutput, lpConsoleScreenBufferInfo);