kernel32: Add stubs for GetConsoleAliasesLengthA/W.
This commit is contained in:
parent
4110068dc2
commit
eff816b55c
|
@ -3175,3 +3175,17 @@ DWORD WINAPI GetConsoleCommandHistoryLengthW(LPCWSTR unknown)
|
|||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
||||
DWORD WINAPI GetConsoleAliasesLengthA(LPSTR unknown)
|
||||
{
|
||||
FIXME(": (%s) stub!\n", debugstr_a(unknown));
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
||||
DWORD WINAPI GetConsoleAliasesLengthW(LPWSTR unknown)
|
||||
{
|
||||
FIXME(": (%s) stub!\n", debugstr_w(unknown));
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -460,8 +460,8 @@
|
|||
@ stub GetConsoleAliasExesW
|
||||
@ stdcall GetConsoleAliasW(wstr ptr long wstr)
|
||||
@ stub GetConsoleAliasesA
|
||||
@ stub GetConsoleAliasesLengthA
|
||||
@ stub GetConsoleAliasesLengthW
|
||||
@ stdcall GetConsoleAliasesLengthA(str)
|
||||
@ stdcall GetConsoleAliasesLengthW(wstr)
|
||||
@ stub GetConsoleAliasesW
|
||||
@ stdcall GetConsoleCP()
|
||||
@ stub GetConsoleCharType
|
||||
|
|
Loading…
Reference in New Issue