mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
[NETEVENT]
- Remove netevent.c and netevent.spec because netevent.dll is a resource-only dll. - Set entrypoint to 0. svn path=/trunk/; revision=51514
This commit is contained in:
parent
5dd119d642
commit
a6edd599e3
3 changed files with 1 additions and 29 deletions
|
@ -1,25 +0,0 @@
|
|||
/*
|
||||
* PROJECT: ReactOS Network Event Handler
|
||||
* LICENSE: GPL - See COPYING in the top level directory
|
||||
* FILE: dll/win32/netevent/netevent.c
|
||||
* PURPOSE: Dummy main file
|
||||
* COPYRIGHT: Eric Kohl
|
||||
*/
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
BOOL
|
||||
WINAPI
|
||||
DllMain(IN HINSTANCE hinstDLL,
|
||||
IN DWORD dwReason,
|
||||
IN LPVOID lpvReserved)
|
||||
{
|
||||
switch (dwReason)
|
||||
{
|
||||
case DLL_PROCESS_ATTACH:
|
||||
DisableThreadLibraryCalls(hinstDLL);
|
||||
break;
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
|
@ -1,8 +1,6 @@
|
|||
<module name="netevent" type="win32dll" baseaddress="${BASEADDRESS_NETEVENT}" installbase="system32" installname="netevent.dll" unicode="true">
|
||||
<importlibrary definition="netevent.spec" />
|
||||
<module name="netevent" type="win32dll" baseaddress="${BASEADDRESS_NETEVENT}" installbase="system32" installname="netevent.dll" entrypoint="0" unicode="true">
|
||||
<include base="netevent">.</include>
|
||||
<include base="neteventmsg" root="intermediate">.</include>
|
||||
<dependency>neteventmsg</dependency>
|
||||
<file>netevent.c</file>
|
||||
<file>netevt.rc</file>
|
||||
</module>
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
# netevent.dll exports
|
Loading…
Reference in a new issue