Author: greatlrd
Date: Mon Oct 15 01:57:40 2007
New Revision: 29579
URL: http://svn.reactos.org/svn/reactos?rev=29579&view=rev
Log:
do not use entrypoint="0" when dll have dllmain
only when dll does not have dllmain we should use entrypoint="0"
other wise the orginal dllmain will not be run
Modified:
trunk/reactos/dll/directx/dinput/dinput.rbuild
Modified: trunk/reactos/dll/directx/dinput/dinput.rbuild
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/directx/dinput/dinput.…
==============================================================================
--- trunk/reactos/dll/directx/dinput/dinput.rbuild (original)
+++ trunk/reactos/dll/directx/dinput/dinput.rbuild Mon Oct 15 01:57:40 2007
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
-<module name="dinput" type="win32dll" entrypoint="0" baseaddress="${BASEADDRESS_DINPUT}" installbase="system32" installname="dinput.dll" allowwarnings ="true">
+<module name="dinput" type="win32dll" baseaddress="${BASEADDRESS_DINPUT}" installbase="system32" installname="dinput.dll" allowwarnings ="true">
<autoregister infsection="OleControlDlls" type="DllRegisterServer" />
<importlibrary definition="dinput.spec.def" />
<include base="dinput">.</include>
Author: greatlrd
Date: Mon Oct 15 01:56:02 2007
New Revision: 29578
URL: http://svn.reactos.org/svn/reactos?rev=29578&view=rev
Log:
do not use entrypoint="0" when dll have dllmain
only when dll does not have dllmain we should use entrypoint="0"
other wise the orginal dllmain will not be run
Modified:
branches/reactx/reactos/dll/directx/dinput/dinput.rbuild
Modified: branches/reactx/reactos/dll/directx/dinput/dinput.rbuild
URL: http://svn.reactos.org/svn/reactos/branches/reactx/reactos/dll/directx/dinp…
==============================================================================
--- branches/reactx/reactos/dll/directx/dinput/dinput.rbuild (original)
+++ branches/reactx/reactos/dll/directx/dinput/dinput.rbuild Mon Oct 15 01:56:02 2007
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
-<module name="dinput" type="win32dll" entrypoint="0" baseaddress="${BASEADDRESS_DINPUT}" installbase="system32" installname="dinput.dll" allowwarnings ="true">
+<module name="dinput" type="win32dll" baseaddress="${BASEADDRESS_DINPUT}" installbase="system32" installname="dinput.dll" allowwarnings ="true">
<autoregister infsection="OleControlDlls" type="DllRegisterServer" />
<importlibrary definition="dinput.spec.def" />
<include base="dinput">.</include>