mirror of
https://github.com/reactos/reactos.git
synced 2025-04-29 10:39:07 +00:00

- Import the mingw startup library and customized it a little. _tmain() is now supported, compiling an application as unicode is now just a matter of setting the module attribute unicode="true" - Fixed .rbuild files to import all libraries neccessary - Various GUID header changes and hacks to get everything to build/link properly - Fixed the IShellView2 interface svn path=/trunk/; revision=23933
15 lines
482 B
Ruby
15 lines
482 B
Ruby
<?xml version="1.0"?>
|
|
<!DOCTYPE project SYSTEM "tools/rbuild/project.dtd">
|
|
<module name="devmgrapp" type="win32cui" installbase="system32" installname="devmgr.exe">
|
|
<define name="__USE_W32API" />
|
|
<define name="DEFINE_GUID" />
|
|
<library>ntdll</library>
|
|
<library>setupapi</library>
|
|
<library>gdi32</library>
|
|
<library>kernel32</library>
|
|
<library>user32</library>
|
|
<library>comctl32</library>
|
|
<library>advapi32</library>
|
|
<file>devmgr.c</file>
|
|
<efile>devmgr.rc</efile>
|
|
</module>
|