kernel32: Silence a noisy FIXME in GetConsoleKeyboardLayoutNameW.

oldstable
André Hentschel 2013-04-13 23:57:30 +02:00 committed by Alexandre Julliard
parent bd0b829142
commit e1c884256e
1 changed files with 3 additions and 1 deletions

View File

@ -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;
}