Commit 77733651 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

kernel32: Add GetConsoleFontInfo stub.

parent a566f674
...@@ -3347,6 +3347,13 @@ COORD WINAPI GetConsoleFontSize(HANDLE hConsole, DWORD index) ...@@ -3347,6 +3347,13 @@ COORD WINAPI GetConsoleFontSize(HANDLE hConsole, DWORD index)
} }
#endif /* !defined(__i386__) */ #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) BOOL WINAPI GetConsoleScreenBufferInfoEx(HANDLE hConsole, CONSOLE_SCREEN_BUFFER_INFOEX *csbix)
{ {
FIXME("(%p %p): stub!\n", hConsole, csbix); FIXME("(%p %p): stub!\n", hConsole, csbix);
......
...@@ -599,7 +599,7 @@ ...@@ -599,7 +599,7 @@
@ stdcall GetConsoleCursorInfo(long ptr) @ stdcall GetConsoleCursorInfo(long ptr)
@ stub GetConsoleCursorMode @ stub GetConsoleCursorMode
@ stdcall GetConsoleDisplayMode(ptr) @ stdcall GetConsoleDisplayMode(ptr)
@ stub GetConsoleFontInfo @ stdcall GetConsoleFontInfo(ptr long long ptr)
@ stdcall GetConsoleFontSize(long long) @ stdcall GetConsoleFontSize(long long)
@ stub GetConsoleHardwareState @ stub GetConsoleHardwareState
# @ stub GetConsoleHistoryInfo # @ 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