kernel32: Add a stub for SetConsoleIcon.
This commit is contained in:
parent
c1279a6b03
commit
e8c283c009
|
@ -3216,3 +3216,11 @@ BOOL WINAPI AddConsoleAliasW(LPWSTR source, LPWSTR target, LPWSTR exename)
|
|||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
||||
BOOL WINAPI SetConsoleIcon(HICON icon)
|
||||
{
|
||||
FIXME(": (%p) stub!\n", icon);
|
||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
|
@ -1080,7 +1080,7 @@
|
|||
@ stdcall SetConsoleDisplayMode(long long ptr)
|
||||
@ stub SetConsoleFont
|
||||
@ stub SetConsoleHardwareState
|
||||
@ stub SetConsoleIcon
|
||||
@ stdcall SetConsoleIcon(ptr)
|
||||
@ stdcall SetConsoleInputExeNameA(ptr)
|
||||
@ stdcall SetConsoleInputExeNameW(ptr)
|
||||
@ stub SetConsoleKeyShortcuts
|
||||
|
|
Loading…
Reference in New Issue