[USETUP] Minor improvements when initializing the console.

- Use NT values for uninitialized handle values.
- Cache the STD_INPUT_HANDLE.
- Free the console if GetConsoleScreenBufferInfo() fails in CONSOLE_Init().
This commit is contained in:
Hermès Bélusca-Maïto 2021-01-03 00:10:03 +01:00
parent 8b94515bd3
commit 0abff65a55
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -33,8 +33,8 @@
/* GLOBALS ******************************************************************/
HANDLE StdInput = INVALID_HANDLE_VALUE;
HANDLE StdOutput = INVALID_HANDLE_VALUE;
HANDLE StdInput = NULL;
HANDLE StdOutput = NULL;
SHORT xScreen = 0;
SHORT yScreen = 0;
@ -45,15 +45,24 @@ BOOLEAN
CONSOLE_Init(VOID)
{
CONSOLE_SCREEN_BUFFER_INFO csbi;
/* Allocate a new console */
if (!AllocConsole())
return FALSE;
StdInput = GetStdHandle(STD_INPUT_HANDLE);
/* Get the standard handles */
StdInput = GetStdHandle(STD_INPUT_HANDLE);
StdOutput = GetStdHandle(STD_OUTPUT_HANDLE);
/* Retrieve the size of the console */
if (!GetConsoleScreenBufferInfo(StdOutput, &csbi))
{
FreeConsole();
return FALSE;
}
xScreen = csbi.dwSize.X;
yScreen = csbi.dwSize.Y;
return TRUE;
}
@ -175,7 +184,7 @@ CONSOLE_GetCursorXY(
{
CONSOLE_SCREEN_BUFFER_INFO csbi;
GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi);
GetConsoleScreenBufferInfo(StdOutput, &csbi);
*x = csbi.dwCursorPosition.X;
*y = csbi.dwCursorPosition.Y;