mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Only load the US keyboard layout if no other was loaded successfully
svn path=/trunk/; revision=6366
This commit is contained in:
parent
0eb7b64bdc
commit
ce73b32829
1 changed files with 11 additions and 14 deletions
|
@ -16,7 +16,7 @@
|
|||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
/* $Id: keyboard.c,v 1.12 2003/10/18 21:29:26 mf Exp $
|
||||
/* $Id: keyboard.c,v 1.13 2003/10/18 21:48:18 weiden Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -590,19 +590,16 @@ void InitKbdLayout( PVOID *pkKeyboardLayout ) {
|
|||
RtlFreeUnicodeString(&FullLayoutPath);
|
||||
}
|
||||
|
||||
if( !kbModule ) {
|
||||
DbgPrint("Trying to load GER Keyboard Layout\n");
|
||||
kbModule = EngLoadImage(L"\\SystemRoot\\system32\\kbdgr.dll");
|
||||
|
||||
if( !kbModule ) {
|
||||
DbgPrint("Trying to load US Keyboard Layout\n");
|
||||
kbModule = EngLoadImage(L"\\SystemRoot\\system32\\kbdus.dll");
|
||||
|
||||
if (!kbModule) {
|
||||
DbgPrint("Failed to load any Keyboard Layout\n");
|
||||
return;
|
||||
}
|
||||
}
|
||||
if( !kbModule )
|
||||
{
|
||||
DbgPrint("Trying to load US Keyboard Layout\n");
|
||||
kbModule = EngLoadImage(L"\\SystemRoot\\system32\\kbdus.dll");
|
||||
|
||||
if (!kbModule)
|
||||
{
|
||||
DbgPrint("Failed to load any Keyboard Layout\n");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
RtlInitAnsiString( &kbdProcedureName, "KbdLayerDescriptor" );
|
||||
|
|
Loading…
Reference in a new issue