- add a (very incomplete) devguid.h

- add mmsys.cpl to the build system and bootcd

svn path=/trunk/; revision=19559
This commit is contained in:
Thomas Bluemel 2005-11-25 16:13:58 +00:00
parent fc31f8d474
commit 8cef988efb
4 changed files with 26 additions and 0 deletions

View file

@ -70,6 +70,7 @@ lib\cpl\control\control.exe 1
lib\cpl\desk\desk.cpl 1
lib\cpl\intl\intl.cpl 1
lib\cpl\main\main.cpl 1
lib\cpl\mmsys\mmsys.cpl 1
lib\cpl\ncpa\ncpa.cpl 1
lib\cpl\sysdm\sysdm.cpl 1
lib\cpl\timedate\timedate.cpl 1

View file

@ -16,6 +16,9 @@
<directory name="main">
<xi:include href="main/main.xml" />
</directory>
<directory name="mmsys">
<xi:include href="mmsys/mmsys.xml" />
</directory>
<directory name="ncpa">
<xi:include href="ncpa/ncpa.xml" />
</directory>

View file

@ -59,6 +59,9 @@
<directory name="devenum">
<xi:include href="devenum/devenum.xml" />
</directory>
<directory name="devmgr">
<xi:include href="devmgr/devmgr.xml" />
</directory>
<directory name="dhcpcapi">
<xi:include href="dhcpcapi/dhcpcapi.xml" />
</directory>

View file

@ -0,0 +1,19 @@
/*
* devguid.h
*
* PnP Device Class GUIDs
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freely.
*
* This code is distributed in the hope that it will be useful but
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
* DISCLAIMED. This includes but is not limited to warranties of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
*/
DEFINE_GUID(GUID_DEVCLASS_CDROM, 0x4D36E965, 0xE325, 0x11CE, 0xBF, 0xC1, 0x08, 0x00, 0x2B, 0xE1, 0x03, 0x18);
DEFINE_GUID(GUID_DEVCLASS_MEDIA, 0x4D36E96C, 0xE325, 0x11CE, 0xBF, 0xC1, 0x08, 0x00, 0x2B, 0xE1, 0x03, 0x18);