1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01:00

user32: Add LoadKeyboardLayoutEx stub.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=28170
This commit is contained in:
Vijay Kiran Kamuju 2024-03-20 00:22:21 +01:00 committed by Alexandre Julliard
parent 84d5614b11
commit a71223eed9
2 changed files with 12 additions and 1 deletions

View file

@ -476,6 +476,17 @@ HKL WINAPI LoadKeyboardLayoutA(LPCSTR pwszKLID, UINT Flags)
}
/***********************************************************************
* LoadKeyboardLayoutEx (USER32.@)
*/
HKL WINAPI LoadKeyboardLayoutEx( HKL layout, const WCHAR *name, UINT flags )
{
FIXME_(keyboard)( "layout %p, name %s, flags %x, semi-stub!\n", layout, debugstr_w( name ), flags );
if (!layout) return NULL;
return LoadKeyboardLayoutW( name, flags );
}
/***********************************************************************
* UnloadKeyboardLayout (USER32.@)
*/

View file

@ -507,7 +507,7 @@
@ stdcall LoadImageA(long str long long long long)
@ stdcall LoadImageW(long wstr long long long long)
@ stdcall LoadKeyboardLayoutA(str long)
# @ stub LoadKeyboardLayoutEx
@ stdcall LoadKeyboardLayoutEx(long wstr long)
@ stdcall LoadKeyboardLayoutW(wstr long)
@ stdcall LoadLocalFonts()
@ stdcall LoadMenuA(long str)