Commit 661755b6 authored by EA Durbin's avatar EA Durbin Committed by Alexandre Julliard

kernel32: Add stub for GetConsoleKeyboardLayoutNameW.

parent 592fc26b
......@@ -974,6 +974,15 @@ BOOL WINAPI GetConsoleKeyboardLayoutNameA(LPSTR layoutName)
}
/***********************************************************************
* GetConsoleKeyboardLayoutNameW (KERNEL32.@)
*/
BOOL WINAPI GetConsoleKeyboardLayoutNameW(LPWSTR layoutName)
{
FIXME( "stub %p\n", layoutName);
return TRUE;
}
/***********************************************************************
* GetConsoleInputExeNameA (KERNEL32.@)
*/
DWORD WINAPI GetConsoleInputExeNameA(DWORD BufferLength, LPSTR lpBuffer)
......
......@@ -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()
......
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