Commit f1e755db authored by Alexandre Julliard's avatar Alexandre Julliard

Preload keyboard.drv when Windows version is Win9x.

parent 31a7a784
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment