kernel32: Implement GetNumberOfConsoleFonts.
We only ever have one entry in the console font table. Signed-off-by: Hugh McMaster <hugh.mcmaster@outlook.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
313e064a44
commit
f0ee54a776
|
@ -3234,6 +3234,11 @@ BOOL WINAPI SetConsoleIcon(HICON icon)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
DWORD WINAPI GetNumberOfConsoleFonts(void)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
BOOL WINAPI GetCurrentConsoleFont(HANDLE hConsole, BOOL maxwindow, LPCONSOLE_FONT_INFO fontinfo)
|
||||
{
|
||||
BOOL ret;
|
||||
|
|
|
@ -753,7 +753,7 @@
|
|||
@ stdcall GetNumberFormatA(long long str ptr ptr long)
|
||||
# @ stub GetNumberFormatEx
|
||||
@ stdcall GetNumberFormatW(long long wstr ptr ptr long)
|
||||
@ stub GetNumberOfConsoleFonts
|
||||
@ stdcall GetNumberOfConsoleFonts()
|
||||
@ stdcall GetNumberOfConsoleInputEvents(long ptr)
|
||||
@ stdcall GetNumberOfConsoleMouseButtons(ptr)
|
||||
@ stdcall GetOEMCP()
|
||||
|
|
Loading…
Reference in New Issue