kernel32: Add stub for GetConsoleKeyboardLayoutNameW.
This commit is contained in:
parent
592fc26b09
commit
661755b69f
|
@ -973,6 +973,15 @@ BOOL WINAPI GetConsoleKeyboardLayoutNameA(LPSTR layoutName)
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* GetConsoleKeyboardLayoutNameW (KERNEL32.@)
|
||||
*/
|
||||
BOOL WINAPI GetConsoleKeyboardLayoutNameW(LPWSTR layoutName)
|
||||
{
|
||||
FIXME( "stub %p\n", layoutName);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* GetConsoleInputExeNameA (KERNEL32.@)
|
||||
*/
|
||||
|
|
|
@ -461,7 +461,7 @@
|
|||
@ stdcall GetConsoleInputExeNameW(long ptr)
|
||||
@ stdcall GetConsoleInputWaitHandle()
|
||||
@ stdcall GetConsoleKeyboardLayoutNameA(ptr)
|
||||
@ stub GetConsoleKeyboardLayoutNameW
|
||||
@ stdcall GetConsoleKeyboardLayoutNameW(ptr)
|
||||
@ stdcall GetConsoleMode(long ptr)
|
||||
@ stub GetConsoleNlsMode
|
||||
@ stdcall GetConsoleOutputCP()
|
||||
|
|
Loading…
Reference in New Issue