We can now use the standard DllMain as entry point.
This commit is contained in:
parent
21066d0d44
commit
7196724ad0
|
@ -7,7 +7,6 @@ MODULE = kernel32.dll
|
|||
IMPORTS = ntdll
|
||||
ALTNAMES = krnl386.exe comm.drv stress.dll system.drv toolhelp.dll windebug.dll win87em.dll
|
||||
EXTRALIBS = $(LIBUNICODE)
|
||||
DLLMAIN = MAIN_KernelInit
|
||||
|
||||
LDDLLFLAGS = @LDDLLFLAGS@
|
||||
SYMBOLFILE = $(MODULE).tmp.o
|
||||
|
|
|
@ -201,7 +201,7 @@ static BOOL process_attach(void)
|
|||
/***********************************************************************
|
||||
* KERNEL initialisation routine
|
||||
*/
|
||||
BOOL WINAPI MAIN_KernelInit( HINSTANCE hinst, DWORD reason, LPVOID reserved )
|
||||
BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved )
|
||||
{
|
||||
switch(reason)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue