Skip to content
Snippets Groups Projects
Commit 15bce226 authored by Austin English's avatar Austin English Committed by Alexandre Julliard
Browse files

kernel32: Add stubs for ExpungeConsoleCommandHistoryA/W.

parent eff816b5
Branches
Tags
No related merge requests found
......@@ -3189,3 +3189,15 @@ DWORD WINAPI GetConsoleAliasesLengthW(LPWSTR unknown)
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
}
VOID WINAPI ExpungeConsoleCommandHistoryA(LPCSTR unknown)
{
FIXME(": (%s) stub!\n", debugstr_a(unknown));
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
}
VOID WINAPI ExpungeConsoleCommandHistoryW(LPCWSTR unknown)
{
FIXME(": (%s) stub!\n", debugstr_w(unknown));
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
}
......@@ -343,8 +343,8 @@
@ stub ExitVDM
@ stdcall ExpandEnvironmentStringsA(str ptr long)
@ stdcall ExpandEnvironmentStringsW(wstr ptr long)
@ stub ExpungeConsoleCommandHistoryA
@ stub ExpungeConsoleCommandHistoryW
@ stdcall ExpungeConsoleCommandHistoryA(str)
@ stdcall ExpungeConsoleCommandHistoryW(wstr)
@ stub ExtendVirtualBuffer
@ stdcall -i386 -private -norelay FT_Exit0() krnl386.exe16.FT_Exit0
@ stdcall -i386 -private -norelay FT_Exit12() krnl386.exe16.FT_Exit12
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment