Commit 57d11712 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

kernel32: Add GetConsoleScreenBufferInfoEx/SetConsoleScreenBufferInfoEx stubs.

parent 684965b8
......@@ -3331,3 +3331,17 @@ COORD WINAPI GetConsoleFontSize(HANDLE hConsole, DWORD index)
return get_console_font_size(hConsole, index);
}
#endif /* !defined(__i386__) */
BOOL WINAPI GetConsoleScreenBufferInfoEx(HANDLE hConsole, CONSOLE_SCREEN_BUFFER_INFOEX *csbix)
{
FIXME("(%p %p): stub!\n", hConsole, csbix);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
BOOL WINAPI SetConsoleScreenBufferInfoEx(HANDLE hConsole, CONSOLE_SCREEN_BUFFER_INFOEX *csbix)
{
FIXME("(%p %p): stub!\n", hConsole, csbix);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
......@@ -615,7 +615,7 @@
@ stdcall GetConsoleOutputCP()
@ stdcall GetConsoleProcessList(ptr long)
@ stdcall GetConsoleScreenBufferInfo(long ptr)
# @ stub GetConsoleScreenBufferInfoEx
@ stdcall GetConsoleScreenBufferInfoEx(long ptr)
# @ stub GetConsoleSelectionInfo
@ stdcall GetConsoleTitleA(ptr long)
@ stdcall GetConsoleTitleW(ptr long)
......@@ -1361,7 +1361,7 @@
@ stub SetConsoleOS2OemFormat
@ stdcall SetConsoleOutputCP(long)
@ stub SetConsolePalette
# @ stub SetConsoleScreenBufferInfoEx
@ stdcall SetConsoleScreenBufferInfoEx(long ptr)
@ stdcall SetConsoleScreenBufferSize(long long)
@ stdcall SetConsoleTextAttribute(long long)
@ stdcall SetConsoleTitleA(str)
......
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