Build twain_32, ws2help, opengl32, syssetup, urlmon, shdocvw, wininet,
userenv, wsock32, and wshirda
Modified: branches/xmlbuildsystem/reactos/lib/directory.xml
Added: branches/xmlbuildsystem/reactos/lib/opengl32/opengl32.xml
Added: branches/xmlbuildsystem/reactos/lib/shdocvw/shdocvw.xml
Added: branches/xmlbuildsystem/reactos/lib/syssetup/syssetup.xml
Added: branches/xmlbuildsystem/reactos/lib/twain/twain_32.xml
Added: branches/xmlbuildsystem/reactos/lib/urlmon/urlmon.xml
Added: branches/xmlbuildsystem/reactos/lib/userenv/userenv.xml
Added: branches/xmlbuildsystem/reactos/lib/wininet/wininet.xml
Added: branches/xmlbuildsystem/reactos/lib/ws2help/ws2help.xml
Added: branches/xmlbuildsystem/reactos/lib/wshirda/wshirda.xml
Added: branches/xmlbuildsystem/reactos/lib/wsock32/wsock32.xml
_____
Modified: branches/xmlbuildsystem/reactos/lib/directory.xml
--- branches/xmlbuildsystem/reactos/lib/directory.xml 2005-02-04
20:39:10 UTC (rev 13406)
+++ branches/xmlbuildsystem/reactos/lib/directory.xml 2005-02-04
20:46:46 UTC (rev 13407)
@@ -164,6 +164,9 @@
<directory name="olepro32">
<xi:include href="olepro32/olepro32.xml" />
</directory>
+<directory name="opengl32">
+ <xi:include href="opengl32/opengl32.xml" />
+</directory>
<directory name="psapi">
<xi:include href="psapi/psapi.xml" />
</directory>
@@ -191,6 +194,9 @@
<directory name="setupapi">
<xi:include href="setupapi/setupapi.xml" />
</directory>
+<directory name="shdocvw">
+ <xi:include href="shdocvw/shdocvw.xml" />
+</directory>
<directory name="shell32">
<xi:include href="shell32/shell32.xml" />
</directory>
@@ -203,18 +209,33 @@
<directory name="strmiids">
<xi:include href="strmiids/strmiids.xml" />
</directory>
+<directory name="syssetup">
+ <xi:include href="syssetup/syssetup.xml" />
+</directory>
+<directory name="twain">
+ <xi:include href="twain/twain_32.xml" />
+</directory>
<directory name="unicode">
<xi:include href="unicode/unicode.xml" />
</directory>
+<directory name="urlmon">
+ <xi:include href="urlmon/urlmon.xml" />
+</directory>
<directory name="user32">
<xi:include href="user32/user32.xml" />
</directory>
+<directory name="userenv">
+ <xi:include href="userenv/userenv.xml" />
+</directory>
<directory name="uuid">
<xi:include href="uuid/uuid.xml" />
</directory>
<directory name="version">
<xi:include href="version/version.xml" />
</directory>
+<directory name="wininet">
+ <xi:include href="wininet/wininet.xml" />
+</directory>
<directory name="winmm">
<xi:include href="winmm/winmm.xml" />
</directory>
@@ -224,6 +245,15 @@
<directory name="ws2_32">
<xi:include href="ws2_32/ws2_32.xml" />
</directory>
+<directory name="ws2help">
+ <xi:include href="ws2help/ws2help.xml" />
+</directory>
+<directory name="wshirda">
+ <xi:include href="wshirda/wshirda.xml" />
+</directory>
+<directory name="wsock32">
+ <xi:include href="wsock32/wsock32.xml" />
+</directory>
<directory name="zlib">
<xi:include href="zlib/zlib.xml" />
</directory>
_____
Added: branches/xmlbuildsystem/reactos/lib/opengl32/opengl32.xml
--- branches/xmlbuildsystem/reactos/lib/opengl32/opengl32.xml
2005-02-04 20:39:10 UTC (rev 13406)
+++ branches/xmlbuildsystem/reactos/lib/opengl32/opengl32.xml
2005-02-04 20:46:46 UTC (rev 13407)
@@ -0,0 +1,13 @@
+<module name="opengl32" type="win32dll">
+ <importlibrary definition="opengl32.def" />
+ <include base="wsock32">.</include>
+ <define name="UNICODE" />
+ <define name="__USE_W32API" />
+ <define name="_DISABLE_TIDENTS" />
+ <library>ntdll</library>
+ <library>kernel32</library>
+ <library>gdi32</library>
+ <file>gl.c</file>
+ <file>opengl32.c</file>
+ <file>wgl.c</file>
+</module>
_____
Added: branches/xmlbuildsystem/reactos/lib/shdocvw/shdocvw.xml
--- branches/xmlbuildsystem/reactos/lib/shdocvw/shdocvw.xml
2005-02-04 20:39:10 UTC (rev 13406)
+++ branches/xmlbuildsystem/reactos/lib/shdocvw/shdocvw.xml
2005-02-04 20:46:46 UTC (rev 13407)
@@ -0,0 +1,33 @@
+<module name="shdocvw" type="win32dll">
+ <dependency>winebuild</dependency>
+ <importlibrary definition="shdocvw.spec.def" />
+ <include base="shdocvw">.</include>
+ <include base="ReactOS">include/wine</include>
+ <define name="UNICODE" />
+ <define name="_UNICODE" />
+ <define name="__REACTOS__" />
+ <define name="__USE_W32API" />
+ <define name="_WIN32_IE">0x600</define>
+ <define name="_WIN32_WINNT">0x501</define>
+ <define name="WINVER">0x501</define>
+ <define name="_SHDOCVW_" />
+ <library>wine</library>
+ <library>uuid</library>
+ <library>ntdll</library>
+ <library>kernel32</library>
+ <library>advapi32</library>
+ <library>user32</library>
+ <library>ole32</library>
+ <library>urlmon</library>
+ <file>classinfo.c</file>
+ <file>events.c</file>
+ <file>factory.c</file>
+ <file>misc.c</file>
+ <file>oleobject.c</file>
+ <file>persist.c</file>
+ <file>regsvr.c</file>
+ <file>shdocvw_main.c</file>
+ <file>webbrowser.c</file>
+ <file>shdocvw.rc</file>
+ <file>shdocvw.spec</file>
+</module>
_____
Added: branches/xmlbuildsystem/reactos/lib/syssetup/syssetup.xml
--- branches/xmlbuildsystem/reactos/lib/syssetup/syssetup.xml
2005-02-04 20:39:10 UTC (rev 13406)
+++ branches/xmlbuildsystem/reactos/lib/syssetup/syssetup.xml
2005-02-04 20:46:46 UTC (rev 13407)
@@ -0,0 +1,27 @@
+<module name="syssetup" type="win32dll">
+ <importlibrary definition="syssetup.def" />
+ <include base="syssetup">.</include>
+ <define name="__USE_W32API" />
+ <define name="UNICODE" />
+ <define name="_UNICODE" />
+ <define name="_WIN32_IE">0x0600</define>
+ <define name="_WIN32_WINNT">0x0501</define>
+ <library>uuid</library>
+ <library>ntdll</library>
+ <library>kernel32</library>
+ <library>advapi32</library>
+ <library>gdi32</library>
+ <library>user32</library>
+ <library>samlib</library>
+ <library>userenv</library>
+ <library>comctl32</library>
+ <library>setupapi</library>
+ <library>ole32</library>
+ <library>shell32</library>
+ <library>shlwapi</library>
+ <file>dllmain.c</file>
+ <file>install.c</file>
+ <file>logfile.c</file>
+ <file>wizard.c</file>
+ <file>syssetup.rc</file>
+</module>
_____
Added: branches/xmlbuildsystem/reactos/lib/twain/twain_32.xml
--- branches/xmlbuildsystem/reactos/lib/twain/twain_32.xml
2005-02-04 20:39:10 UTC (rev 13406)
+++ branches/xmlbuildsystem/reactos/lib/twain/twain_32.xml
2005-02-04 20:46:46 UTC (rev 13407)
@@ -0,0 +1,15 @@
+<module name="twain_32" type="win32dll">
+ <importlibrary definition="twain_32.def" />
+ <include base="twain_32">.</include>
+ <define name="_DISABLE_TIDENTS" />
+ <library>wine</library>
+ <library>ntdll</library>
+ <library>kernel32</library>
+ <file>capability.c</file>
+ <file>ds_audio.c</file>
+ <file>ds_ctrl.c</file>
+ <file>ds_image.c</file>
+ <file>dsm_ctrl.c</file>
+ <file>twain32_main.c</file>
+ <file>twain_32.rc</file>
+</module>
_____
Added: branches/xmlbuildsystem/reactos/lib/urlmon/urlmon.xml
--- branches/xmlbuildsystem/reactos/lib/urlmon/urlmon.xml
2005-02-04 20:39:10 UTC (rev 13406)
+++ branches/xmlbuildsystem/reactos/lib/urlmon/urlmon.xml
2005-02-04 20:46:46 UTC (rev 13407)
@@ -0,0 +1,29 @@
+<module name="urlmon" type="win32dll">
+ <dependency>winebuild</dependency>
+ <importlibrary definition="urlmon.spec.def" />
+ <include base="urlmon">.</include>
+ <include base="ReactOS">include/wine</include>
+ <define name="UNICODE" />
+ <define name="_UNICODE" />
+ <define name="__REACTOS__" />
+ <define name="__USE_W32API" />
+ <define name="_WIN32_IE">0x600</define>
+ <define name="_WIN32_WINNT">0x501</define>
+ <define name="WINVER">0x501</define>
+ <define name="_STDDEF_H" />
+ <library>wine</library>
+ <library>uuid</library>
+ <library>ntdll</library>
+ <library>kernel32</library>
+ <library>advapi32</library>
+ <library>user32</library>
+ <library>ole32</library>
+ <library>shlwapi</library>
+ <library>cabinet</library>
+ <library>wininet</library>
+ <file>regsvr.c</file>
+ <file>sec_mgr.c</file>
+ <file>umon.c</file>
+ <file>urlmon_main.c</file>
+ <file>urlmon.spec</file>
+</module>
_____
Added: branches/xmlbuildsystem/reactos/lib/userenv/userenv.xml
--- branches/xmlbuildsystem/reactos/lib/userenv/userenv.xml
2005-02-04 20:39:10 UTC (rev 13406)
+++ branches/xmlbuildsystem/reactos/lib/userenv/userenv.xml
2005-02-04 20:46:46 UTC (rev 13407)
@@ -0,0 +1,21 @@
+<module name="userenv" type="win32dll">
+ <importlibrary definition="userenv.def" />
+ <include base="userenv">.</include>
+ <define name="__USE_W32API" />
+ <define name="_WIN32_IE">0x0400</define>
+ <define name="_WIN32_WINNT">0x0501</define>
+ <library>uuid</library>
+ <library>ntdll</library>
+ <library>kernel32</library>
+ <library>advapi32</library>
+ <library>user32</library>
+ <file>desktop.c</file>
+ <file>directory.c</file>
+ <file>environment.c</file>
+ <file>misc.c</file>
+ <file>profile.c</file>
+ <file>registry.c</file>
+ <file>setup.c</file>
+ <file>userenv.c</file>
+ <file>userenv.rc</file>
+</module>
_____
Added: branches/xmlbuildsystem/reactos/lib/wininet/wininet.xml
--- branches/xmlbuildsystem/reactos/lib/wininet/wininet.xml
2005-02-04 20:39:10 UTC (rev 13406)
+++ branches/xmlbuildsystem/reactos/lib/wininet/wininet.xml
2005-02-04 20:46:46 UTC (rev 13407)
@@ -0,0 +1,8 @@
+<module name="wininet" type="win32dll">
+ <importlibrary definition="wininet.def" />
+ <include base="wininet">.</include>
+ <library>ntdll</library>
+ <library>kernel32</library>
+ <file>stubs.c</file>
+ <file>wininet.rc</file>
+</module>
_____
Added: branches/xmlbuildsystem/reactos/lib/ws2help/ws2help.xml
--- branches/xmlbuildsystem/reactos/lib/ws2help/ws2help.xml
2005-02-04 20:39:10 UTC (rev 13406)
+++ branches/xmlbuildsystem/reactos/lib/ws2help/ws2help.xml
2005-02-04 20:46:46 UTC (rev 13407)
@@ -0,0 +1,12 @@
+<module name="ws2help" type="win32dll">
+ <importlibrary definition="ws2help.def" />
+ <include base="ws2help">.</include>
+ <define name="UNICODE" />
+ <define name="__USE_W32API" />
+ <define name="_DISABLE_TIDENTS" />
+ <library>ntdll</library>
+ <library>kernel32</library>
+ <library>ws2_32</library>
+ <file>ws2help.c</file>
+ <file>ws2help.rc</file>
+</module>
_____
Added: branches/xmlbuildsystem/reactos/lib/wshirda/wshirda.xml
--- branches/xmlbuildsystem/reactos/lib/wshirda/wshirda.xml
2005-02-04 20:39:10 UTC (rev 13406)
+++ branches/xmlbuildsystem/reactos/lib/wshirda/wshirda.xml
2005-02-04 20:46:46 UTC (rev 13407)
@@ -0,0 +1,12 @@
+<module name="wshirda" type="win32dll">
+ <importlibrary definition="wshirda.def" />
+ <include base="wshirda">.</include>
+ <define name="UNICODE" />
+ <define name="__USE_W32API" />
+ <define name="_DISABLE_TIDENTS" />
+ <library>ntdll</library>
+ <library>kernel32</library>
+ <library>ws2_32</library>
+ <file>wshirda.c</file>
+ <file>wshirda.rc</file>
+</module>
_____
Added: branches/xmlbuildsystem/reactos/lib/wsock32/wsock32.xml
--- branches/xmlbuildsystem/reactos/lib/wsock32/wsock32.xml
2005-02-04 20:39:10 UTC (rev 13406)
+++ branches/xmlbuildsystem/reactos/lib/wsock32/wsock32.xml
2005-02-04 20:46:46 UTC (rev 13407)
@@ -0,0 +1,11 @@
+<module name="wsock32" type="win32dll">
+ <importlibrary definition="wsock32.def" />
+ <include base="wsock32">.</include>
+ <define name="UNICODE" />
+ <define name="__USE_W32API" />
+ <library>ntdll</library>
+ <library>kernel32</library>
+ <library>ws2_32</library>
+ <file>stubs.c</file>
+ <file>wsock32.rc</file>
+</module>