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;
|
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)
|
VOID WINAPI ExpungeConsoleCommandHistoryA(LPCSTR unknown)
|
||||||
{
|
{
|
||||||
FIXME(": (%s) stub!\n", debugstr_a(unknown));
|
FIXME(": (%s) stub!\n", debugstr_a(unknown));
|
||||||
|
|
|
@ -582,8 +582,8 @@
|
||||||
@ stdcall GetComputerNameW(ptr ptr)
|
@ stdcall GetComputerNameW(ptr ptr)
|
||||||
@ stub GetConsoleAliasA
|
@ stub GetConsoleAliasA
|
||||||
@ stub GetConsoleAliasExesA
|
@ stub GetConsoleAliasExesA
|
||||||
@ stub GetConsoleAliasExesLengthA
|
@ stdcall GetConsoleAliasExesLengthA()
|
||||||
@ stub GetConsoleAliasExesLengthW
|
@ stdcall GetConsoleAliasExesLengthW()
|
||||||
@ stub GetConsoleAliasExesW
|
@ stub GetConsoleAliasExesW
|
||||||
@ stdcall GetConsoleAliasW(wstr ptr long wstr)
|
@ stdcall GetConsoleAliasW(wstr ptr long wstr)
|
||||||
@ stub GetConsoleAliasesA
|
@ stub GetConsoleAliasesA
|
||||||
|
|
Loading…
Reference in New Issue