Commit e1c88425 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

kernel32: Silence a noisy FIXME in GetConsoleKeyboardLayoutNameW.

parent bd0b8291
......@@ -1274,7 +1274,9 @@ BOOL WINAPI GetConsoleKeyboardLayoutNameA(LPSTR layoutName)
*/
BOOL WINAPI GetConsoleKeyboardLayoutNameW(LPWSTR layoutName)
{
FIXME( "stub %p\n", layoutName);
static int once;
if (!once++)
FIXME( "stub %p\n", layoutName);
return TRUE;
}
......
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