kernel32: Add stub implementation of GetConsoleKeyboardLayoutNameA.
This commit is contained in:
parent
6e6a2a5856
commit
592fc26b09
|
@ -963,6 +963,16 @@ BOOL WINAPI SetConsoleTitleA( LPCSTR title )
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* GetConsoleKeyboardLayoutNameA (KERNEL32.@)
|
||||||
|
*/
|
||||||
|
BOOL WINAPI GetConsoleKeyboardLayoutNameA(LPSTR layoutName)
|
||||||
|
{
|
||||||
|
FIXME( "stub %p\n", layoutName);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* GetConsoleInputExeNameA (KERNEL32.@)
|
* GetConsoleInputExeNameA (KERNEL32.@)
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -460,7 +460,7 @@
|
||||||
@ stdcall GetConsoleInputExeNameA(long ptr)
|
@ stdcall GetConsoleInputExeNameA(long ptr)
|
||||||
@ stdcall GetConsoleInputExeNameW(long ptr)
|
@ stdcall GetConsoleInputExeNameW(long ptr)
|
||||||
@ stdcall GetConsoleInputWaitHandle()
|
@ stdcall GetConsoleInputWaitHandle()
|
||||||
@ stub GetConsoleKeyboardLayoutNameA
|
@ stdcall GetConsoleKeyboardLayoutNameA(ptr)
|
||||||
@ stub GetConsoleKeyboardLayoutNameW
|
@ stub GetConsoleKeyboardLayoutNameW
|
||||||
@ stdcall GetConsoleMode(long ptr)
|
@ stdcall GetConsoleMode(long ptr)
|
||||||
@ stub GetConsoleNlsMode
|
@ stub GetConsoleNlsMode
|
||||||
|
|
Loading…
Reference in New Issue