Commit d8e34ebc authored by Alexandre Julliard's avatar Alexandre Julliard

Renamed system.dll to system.drv.

parent e0deb0c6
...@@ -178,7 +178,7 @@ WIN16_FILES = \ ...@@ -178,7 +178,7 @@ WIN16_FILES = \
sound.dll$(DLLEXT) \ sound.dll$(DLLEXT) \
storage.dll$(DLLEXT) \ storage.dll$(DLLEXT) \
stress.dll$(DLLEXT) \ stress.dll$(DLLEXT) \
system.dll$(DLLEXT) \ system.drv$(DLLEXT) \
toolhelp.dll$(DLLEXT) \ toolhelp.dll$(DLLEXT) \
typelib.dll$(DLLEXT) \ typelib.dll$(DLLEXT) \
user.exe$(DLLEXT) \ user.exe$(DLLEXT) \
...@@ -438,7 +438,7 @@ joystick.drv$(DLLEXT): winmm/joystick/joystick.drv$(DLLEXT) ...@@ -438,7 +438,7 @@ joystick.drv$(DLLEXT): winmm/joystick/joystick.drv$(DLLEXT)
$(RM) $@ && $(LN_S) winmm/joystick/joystick.drv$(DLLEXT) $@ $(RM) $@ && $(LN_S) winmm/joystick/joystick.drv$(DLLEXT) $@
kernel32.dll$(DLLEXT) comm.dll$(DLLEXT) krnl386.exe$(DLLEXT) \ kernel32.dll$(DLLEXT) comm.dll$(DLLEXT) krnl386.exe$(DLLEXT) \
stress.dll$(DLLEXT) system.dll$(DLLEXT) toolhelp.dll$(DLLEXT) \ stress.dll$(DLLEXT) system.drv$(DLLEXT) toolhelp.dll$(DLLEXT) \
win87em.dll$(DLLEXT) windebug.dll$(DLLEXT): kernel/kernel32.dll$(DLLEXT) win87em.dll$(DLLEXT) windebug.dll$(DLLEXT): kernel/kernel32.dll$(DLLEXT)
$(RM) $@ && $(LN_S) kernel/kernel32.dll$(DLLEXT) $@ $(RM) $@ && $(LN_S) kernel/kernel32.dll$(DLLEXT) $@
......
...@@ -6,7 +6,7 @@ kernel32.spec.c ...@@ -6,7 +6,7 @@ kernel32.spec.c
kernel32.spec.def kernel32.spec.def
krnl386.exe.spec.c krnl386.exe.spec.c
stress.spec.c stress.spec.c
system.spec.c system.drv.spec.c
toolhelp.spec.c toolhelp.spec.c
version16.res version16.res
win87em.spec.c win87em.spec.c
......
...@@ -5,7 +5,7 @@ SRCDIR = @srcdir@ ...@@ -5,7 +5,7 @@ SRCDIR = @srcdir@
VPATH = @srcdir@ VPATH = @srcdir@
MODULE = kernel32.dll MODULE = kernel32.dll
IMPORTS = ntdll IMPORTS = ntdll
ALTNAMES = krnl386.exe comm.dll stress.dll system.dll toolhelp.dll windebug.dll win87em.dll ALTNAMES = krnl386.exe comm.dll stress.dll system.drv toolhelp.dll windebug.dll win87em.dll
LDIMPORTS = ntdll.dll LDIMPORTS = ntdll.dll
EXTRALIBS = $(LIBUNICODE) EXTRALIBS = $(LIBUNICODE)
DLLMAIN = MAIN_KernelInit DLLMAIN = MAIN_KernelInit
...@@ -14,7 +14,7 @@ SPEC_SRCS16 = \ ...@@ -14,7 +14,7 @@ SPEC_SRCS16 = \
comm.spec \ comm.spec \
krnl386.exe.spec \ krnl386.exe.spec \
stress.spec \ stress.spec \
system.spec \ system.drv.spec \
toolhelp.spec \ toolhelp.spec \
win87em.spec \ win87em.spec \
windebug.spec windebug.spec
......
...@@ -157,10 +157,10 @@ static BOOL process_attach(void) ...@@ -157,10 +157,10 @@ static BOOL process_attach(void)
NE_SetEntryPoint( hModule, 193, DOSMEM_BiosDataSeg ); /* KERNEL.193: __0040H */ NE_SetEntryPoint( hModule, 193, DOSMEM_BiosDataSeg ); /* KERNEL.193: __0040H */
NE_SetEntryPoint( hModule, 194, DOSMEM_BiosSysSeg ); /* KERNEL.194: __F000H */ NE_SetEntryPoint( hModule, 194, DOSMEM_BiosSysSeg ); /* KERNEL.194: __F000H */
#undef SET_ENTRY_POINT #undef SET_ENTRY_POINT
}
/* Force loading of some dlls */ /* Force loading of some dlls */
LoadLibrary16( "system" ); LoadLibrary16( "system.drv" );
}
/* Create 16-bit task */ /* Create 16-bit task */
TASK_CreateMainTask(); TASK_CreateMainTask();
......
...@@ -67,7 +67,7 @@ static module_loadorder_t default_order_list[] = ...@@ -67,7 +67,7 @@ static module_loadorder_t default_order_list[] =
{ "mouse", { LOADORDER_BI, 0, 0 } }, { "mouse", { LOADORDER_BI, 0, 0 } },
{ "ntdll", { LOADORDER_BI, 0, 0 } }, { "ntdll", { LOADORDER_BI, 0, 0 } },
{ "odbc32", { LOADORDER_BI, 0, 0 } }, { "odbc32", { LOADORDER_BI, 0, 0 } },
{ "system", { LOADORDER_BI, 0, 0 } }, { "system.drv", { LOADORDER_BI, 0, 0 } },
{ "toolhelp", { LOADORDER_BI, 0, 0 } }, { "toolhelp", { LOADORDER_BI, 0, 0 } },
{ "ttydrv", { LOADORDER_BI, 0, 0 } }, { "ttydrv", { LOADORDER_BI, 0, 0 } },
{ "user.exe", { LOADORDER_BI, 0, 0 } }, { "user.exe", { LOADORDER_BI, 0, 0 } },
......
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