kernel32: Add stub for GetConsoleKeyboardLayoutNameW.

This commit is contained in:
EA Durbin 2007-11-11 12:30:38 -06:00 committed by Alexandre Julliard
parent 592fc26b09
commit 661755b69f
2 changed files with 10 additions and 1 deletions

View File

@ -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.@)
*/

View File

@ -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()