Stubbed SetConsoleInputExeNameA/W.
This commit is contained in:
parent
c4bf3a6bbe
commit
eca7f9fc71
|
@ -904,8 +904,8 @@ import ntdll.dll
|
|||
885 stub ReadDirectoryChangesW
|
||||
886 stub ReadFileScatter
|
||||
887 stub SetConsoleIcon
|
||||
888 stub SetConsoleInputExeNameA
|
||||
889 stub SetConsoleInputExeNameW
|
||||
888 stdcall SetConsoleInputExeNameA(ptr) SetConsoleInputExeNameA
|
||||
889 stdcall SetConsoleInputExeNameW(ptr) SetConsoleInputExeNameW
|
||||
890 stdcall SetProcessAffinityMask(long long) SetProcessAffinityMask
|
||||
891 stdcall SetProcessPriorityBoost(long long) SetProcessPriorityBoost
|
||||
892 stub SetThreadIdealProcessor
|
||||
|
|
|
@ -1590,3 +1590,31 @@ BOOL WINAPI SetConsoleCP( UINT cp )
|
|||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* SetConsoleInputExeNameW [KERNEL32.889]
|
||||
*
|
||||
* BUGS
|
||||
* Unimplemented
|
||||
*/
|
||||
BOOL WINAPI SetConsoleInputExeNameW( LPCWSTR name )
|
||||
{
|
||||
FIXME("(%s): stub!\n", debugstr_w(name));
|
||||
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* SetConsoleInputExeNameA [KERNEL32.888]
|
||||
*
|
||||
* BUGS
|
||||
* Unimplemented
|
||||
*/
|
||||
BOOL WINAPI SetConsoleInputExeNameA( LPCSTR name )
|
||||
{
|
||||
FIXME("(%s): stub!\n", name);
|
||||
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return TRUE;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue