Commit 592fc26b authored by EA Durbin's avatar EA Durbin Committed by Alexandre Julliard

kernel32: Add stub implementation of GetConsoleKeyboardLayoutNameA.

parent 6e6a2a58
......@@ -963,6 +963,16 @@ BOOL WINAPI SetConsoleTitleA( LPCSTR title )
return ret;
}
/***********************************************************************
* GetConsoleKeyboardLayoutNameA (KERNEL32.@)
*/
BOOL WINAPI GetConsoleKeyboardLayoutNameA(LPSTR layoutName)
{
FIXME( "stub %p\n", layoutName);
return TRUE;
}
/***********************************************************************
* GetConsoleInputExeNameA (KERNEL32.@)
*/
......
......@@ -460,7 +460,7 @@
@ stdcall GetConsoleInputExeNameA(long ptr)
@ stdcall GetConsoleInputExeNameW(long ptr)
@ stdcall GetConsoleInputWaitHandle()
@ stub GetConsoleKeyboardLayoutNameA
@ stdcall GetConsoleKeyboardLayoutNameA(ptr)
@ stub GetConsoleKeyboardLayoutNameW
@ stdcall GetConsoleMode(long ptr)
@ stub GetConsoleNlsMode
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment