implemented GetKeyboardLayoutNameW

fixed declaration of NtUserGetKeyboardLayoutName

svn path=/trunk/; revision=20150
This commit is contained in:
Christoph von Wittich 2005-12-13 21:26:25 +00:00
parent 9f345c304d
commit 86498fffe4
3 changed files with 6 additions and 9 deletions

View file

@ -752,10 +752,10 @@ NtUserGetKeyboardLayoutList(
DWORD Unknown0,
DWORD Unknown1);
DWORD
BOOL
STDCALL
NtUserGetKeyboardLayoutName(
DWORD Unknown0);
LPWSTR lpszName);
DWORD
STDCALL

View file

@ -260,13 +260,12 @@ GetKeyboardLayoutNameA(LPSTR pwszKLID)
/*
* @unimplemented
* @implemented
*/
BOOL STDCALL
GetKeyboardLayoutNameW(LPWSTR pwszKLID)
{
UNIMPLEMENTED;
return FALSE;
return NtUserGetKeyboardLayoutName( pwszKLID );
}

View file

@ -1254,18 +1254,16 @@ NtUserGetKeyboardLayoutList(
return 0;
}
DWORD
BOOL
STDCALL
NtUserGetKeyboardLayoutName(
DWORD lpszName)
LPWSTR lpszName)
{
UNIMPLEMENTED
return 0;
}
HKL FASTCALL
UserGetKeyboardLayout(
DWORD dwThreadId)