kernel32: Add GetConsoleAliasExesLengthA/W stubs.
Signed-off-by: Austin English <austinenglish@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c6373260e0
commit
43637ce9f7
|
@ -3207,6 +3207,20 @@ DWORD WINAPI GetConsoleAliasesLengthW(LPWSTR unknown)
|
|||
return 0;
|
||||
}
|
||||
|
||||
DWORD WINAPI GetConsoleAliasExesLengthA(void)
|
||||
{
|
||||
FIXME(": stub!\n");
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
||||
DWORD WINAPI GetConsoleAliasExesLengthW(void)
|
||||
{
|
||||
FIXME(": stub!\n");
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
||||
VOID WINAPI ExpungeConsoleCommandHistoryA(LPCSTR unknown)
|
||||
{
|
||||
FIXME(": (%s) stub!\n", debugstr_a(unknown));
|
||||
|
|
|
@ -582,8 +582,8 @@
|
|||
@ stdcall GetComputerNameW(ptr ptr)
|
||||
@ stub GetConsoleAliasA
|
||||
@ stub GetConsoleAliasExesA
|
||||
@ stub GetConsoleAliasExesLengthA
|
||||
@ stub GetConsoleAliasExesLengthW
|
||||
@ stdcall GetConsoleAliasExesLengthA()
|
||||
@ stdcall GetConsoleAliasExesLengthW()
|
||||
@ stub GetConsoleAliasExesW
|
||||
@ stdcall GetConsoleAliasW(wstr ptr long wstr)
|
||||
@ stub GetConsoleAliasesA
|
||||
|
|
Loading…
Reference in New Issue