mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
kernel32: Add a stub for AddConsoleAliasA/W.
This commit is contained in:
parent
a52f88096f
commit
9a2c2ed5c2
@ -3201,3 +3201,17 @@ VOID WINAPI ExpungeConsoleCommandHistoryW(LPCWSTR unknown)
|
||||
FIXME(": (%s) stub!\n", debugstr_w(unknown));
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
}
|
||||
|
||||
BOOL WINAPI AddConsoleAliasA(LPSTR source, LPSTR target, LPSTR exename)
|
||||
{
|
||||
FIXME(": (%s, %s, %s) stub!\n", debugstr_a(source), debugstr_a(target), debugstr_a(exename));
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL WINAPI AddConsoleAliasW(LPWSTR source, LPWSTR target, LPWSTR exename)
|
||||
{
|
||||
FIXME(": (%s, %s, %s) stub!\n", debugstr_w(source), debugstr_w(target), debugstr_w(exename));
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
@ -138,8 +138,8 @@
|
||||
@ stdcall ActivateActCtx(ptr ptr)
|
||||
@ stdcall AddAtomA(str)
|
||||
@ stdcall AddAtomW(wstr)
|
||||
@ stub AddConsoleAliasA
|
||||
@ stub AddConsoleAliasW
|
||||
@ stdcall AddConsoleAliasA(str str str)
|
||||
@ stdcall AddConsoleAliasW(wstr wstr wstr)
|
||||
# @ stub AddLocalAlternateComputerNameA
|
||||
# @ stub AddLocalAlternateComputerNameW
|
||||
@ stdcall AddRefActCtx(ptr)
|
||||
|
Loading…
Reference in New Issue
Block a user