do not use entrypoint="0" when dll have dllmain

only when dll does not have dllmain we should use entrypoint="0" 
other wise the original dllmain will not be run

svn path=/trunk/; revision=29584
This commit is contained in:
Magnus Olsen 2007-10-14 22:12:11 +00:00
parent 2b4f464c28
commit 4366aedfe4
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
<?xml version="1.0"?>
<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
<module name="basesrv" type="win32dll" entrypoint="0">
<module name="basesrv" type="win32dll">
<importlibrary definition="basesrv.def" />
<include base="basesrv">.</include>
<include base="csr">include</include>

View file

@ -1,6 +1,6 @@
<?xml version="1.0"?>
<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
<module name="winsrv" type="win32dll" entrypoint="0">
<module name="winsrv" type="win32dll">
<importlibrary definition="winsrv.def" />
<include base="winsrv">.</include>
<include base="csr">include</include>