Correct filename for kernel module is KRNL386.EXE.
This commit is contained in:
parent
d629ca4c6c
commit
448b34a088
|
@ -34,7 +34,7 @@ static struct tagDllOverride {
|
|||
char *key,*value;
|
||||
} DefaultDllOverrides[] = {
|
||||
{"kernel32,gdi32,user32", "builtin"},
|
||||
{"kernel,gdi,user", "builtin"},
|
||||
{"krnl386,gdi,user", "builtin"},
|
||||
{"toolhelp", "builtin"},
|
||||
{"comdlg32,commdlg", "elfdll,builtin,native"},
|
||||
{"version,ver", "elfdll,builtin,native"},
|
||||
|
|
|
@ -298,7 +298,7 @@ HINSTANCE MAIN_WinelibInit( int *argc, char *argv[] )
|
|||
if (!MAIN_MainInit()) return 0;
|
||||
|
||||
/* Initialize KERNEL */
|
||||
if (!LoadLibrary16( "KERNEL" )) return 0;
|
||||
if (!LoadLibrary16( "KRNL386.EXE" )) return 0;
|
||||
if (!LoadLibraryA( "KERNEL32" )) return 0;
|
||||
|
||||
/* Create and switch to initial task */
|
||||
|
|
|
@ -132,7 +132,7 @@ int main( int argc, char *argv[] )
|
|||
if (!MAIN_MainInit()) return 1;
|
||||
|
||||
/* Load kernel modules */
|
||||
if (!LoadLibrary16( "KERNEL" )) return 1;
|
||||
if (!LoadLibrary16( "KRNL386.EXE" )) return 1;
|
||||
if (!LoadLibraryA( "KERNEL32" )) return 1;
|
||||
|
||||
/* Create initial task */
|
||||
|
|
Loading…
Reference in New Issue