Commit 59bf1170 authored by Austin English's avatar Austin English Committed by Michael Stefaniuc

kernel32: Add GetConsoleFontInfo stub.

Signed-off-by: 's avatarAustin English <austinenglish@gmail.com> Signed-off-by: 's avatarHugh McMaster <hugh.mcmaster@outlook.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org> (cherry picked from commit 77733651) Signed-off-by: 's avatarMichael Stefaniuc <mstefani@winehq.org>
parent ae5af823
......@@ -3322,6 +3322,13 @@ COORD WINAPI GetConsoleFontSize(HANDLE hConsole, DWORD index)
}
#endif /* !defined(__i386__) */
BOOL WINAPI GetConsoleFontInfo(HANDLE hConsole, BOOL maximize, DWORD numfonts, CONSOLE_FONT_INFO *info)
{
FIXME("(%p %d %u %p): stub!\n", hConsole, maximize, numfonts, info);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
BOOL WINAPI GetConsoleScreenBufferInfoEx(HANDLE hConsole, CONSOLE_SCREEN_BUFFER_INFOEX *csbix)
{
FIXME("(%p %p): stub!\n", hConsole, csbix);
......
......@@ -599,7 +599,7 @@
@ stdcall GetConsoleCursorInfo(long ptr)
@ stub GetConsoleCursorMode
@ stdcall GetConsoleDisplayMode(ptr)
@ stub GetConsoleFontInfo
@ stdcall GetConsoleFontInfo(ptr long long ptr)
@ stdcall GetConsoleFontSize(long long)
@ stub GetConsoleHardwareState
# @ stub GetConsoleHistoryInfo
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment