kernel32: Add GetCurrentConsoleFont stub.
This commit is contained in:
parent
57bb58f7f5
commit
71d3d4f1ba
|
@ -3224,3 +3224,11 @@ BOOL WINAPI SetConsoleIcon(HICON icon)
|
|||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL WINAPI GetCurrentConsoleFont(HANDLE hConsole, BOOL maxwindow, LPCONSOLE_FONT_INFO fontinfo)
|
||||
{
|
||||
FIXME(": (%p, %d, %p) stub!\n", hConsole, maxwindow, fontinfo);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
|
||||
}
|
||||
|
|
|
@ -494,7 +494,7 @@
|
|||
@ stdcall GetCurrencyFormatA(long long str ptr str long)
|
||||
@ stdcall GetCurrencyFormatW(long long str ptr str long)
|
||||
@ stdcall GetCurrentActCtx(ptr)
|
||||
@ stub GetCurrentConsoleFont
|
||||
@ stdcall GetCurrentConsoleFont(long long ptr)
|
||||
@ stdcall GetCurrentDirectoryA(long ptr)
|
||||
@ stdcall GetCurrentDirectoryW(long ptr)
|
||||
@ stdcall GetCurrentProcess()
|
||||
|
|
Loading…
Reference in New Issue