Preload keyboard.drv when Windows version is Win9x.
This commit is contained in:
parent
31a7a7847e
commit
f1e755db4b
|
@ -163,6 +163,9 @@ static BOOL process_attach(void)
|
|||
LocalInit16( USER_HeapSel, 32, 65534 );
|
||||
}
|
||||
|
||||
/* some Win9x dlls expect keyboard to be loaded */
|
||||
if (GetVersion() & 0x80000000) LoadLibrary16( "keyboard.drv" );
|
||||
|
||||
/* Load the graphics driver */
|
||||
if (!load_driver()) return FALSE;
|
||||
|
||||
|
|
Loading…
Reference in New Issue