kernel32: Add stubs for GetConsoleCommandHistoryLengthA/W.
This commit is contained in:
parent
efbde389c7
commit
4110068dc2
|
@ -3157,3 +3157,21 @@ DWORD WINAPI GetConsoleCommandHistoryW(DWORD unknown1, DWORD unknown2, DWORD unk
|
|||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Undocumented, called by native doskey.exe */
|
||||
/* FIXME: Should use CONSOLE_GetHistory() above for full implementation */
|
||||
DWORD WINAPI GetConsoleCommandHistoryLengthA(LPCSTR unknown)
|
||||
{
|
||||
FIXME(": (%s) stub!\n", debugstr_a(unknown));
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Undocumented, called by native doskey.exe */
|
||||
/* FIXME: Should use CONSOLE_GetHistory() above for full implementation */
|
||||
DWORD WINAPI GetConsoleCommandHistoryLengthW(LPCWSTR unknown)
|
||||
{
|
||||
FIXME(": (%s) stub!\n", debugstr_w(unknown));
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -466,8 +466,8 @@
|
|||
@ stdcall GetConsoleCP()
|
||||
@ stub GetConsoleCharType
|
||||
@ stdcall GetConsoleCommandHistoryA(long long long)
|
||||
@ stub GetConsoleCommandHistoryLengthA
|
||||
@ stub GetConsoleCommandHistoryLengthW
|
||||
@ stdcall GetConsoleCommandHistoryLengthA(str)
|
||||
@ stdcall GetConsoleCommandHistoryLengthW(wstr)
|
||||
@ stdcall GetConsoleCommandHistoryW(long long long)
|
||||
@ stdcall GetConsoleCursorInfo(long ptr)
|
||||
@ stub GetConsoleCursorMode
|
||||
|
|
Loading…
Reference in New Issue