mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
start building up ksguid.a/ksguid.lib it is need it for ks.h
svn path=/branches/reactx/; revision=30139
This commit is contained in:
parent
eb615b5cf1
commit
67a3fbe3e7
2 changed files with 34 additions and 0 deletions
27
reactos/lib/sdk/ksguid/ksguid.c
Normal file
27
reactos/lib/sdk/ksguid/ksguid.c
Normal file
|
@ -0,0 +1,27 @@
|
|||
/*
|
||||
|
||||
ksguid.c - DirectX GUIDs
|
||||
|
||||
Written by Magnus Olsen
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
*/
|
||||
|
||||
#define INITGUID
|
||||
#include <basetyps.h>
|
||||
#include <guiddef.h>
|
||||
|
||||
|
||||
DEFINE_GUID(KSPROPSETID_GM, 0xAF627536, 0xE719, 0x11D2, 0x8A, 0x1D, 0x00, 0x60, 0x97, 0xD2, 0xDF, 0x5D);
|
||||
DEFINE_GUID(KSPROPSETID_Topology, 0x720D4AC0, 0x7533, 0x11D0, 0xA5, 0xD6, 0x28, 0xDB, 0x04, 0xC1, 0x00, 0x00);
|
||||
DEFINE_GUID(KSPROPSETID_MediaSeeking, 0xEE904F0C, 0xD09B, 0x11D0, 0xAB, 0xE9, 0x00, 0xA0, 0xC9, 0x22, 0x31, 0x96);
|
||||
DEFINE_GUID(KSMETHODSETID_StreamIo, 0x65D003CA, 0x1523, 0x11D2, 0xB2, 0x7A, 0x00, 0xA0, 0xC9, 0x22, 0x31, 0x96);
|
||||
DEFINE_GUID(KSPROPSETID_General, 0x1464EDA5, 0x6A8F, 0x11D1, 0x9A, 0xA7, 0x00, 0xA0, 0xC9, 0x22, 0x31, 0x96);
|
||||
DEFINE_GUID(KSPROPTYPESETID_General, 0x97E99BA0, 0xBDEA, 0x11CF, 0xA5, 0xD6, 0x28, 0xDB, 0x04, 0xC1, 0x00, 0x00);
|
||||
DEFINE_GUID(GUID_NULL, 0x00000000, 0x0000, 0x0000, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00);
|
||||
DEFINE_GUID(BUSID_SoftwareDeviceEnumerator, 0x4747B320, 0x62CE, 0x11CF, 0xA5, 0xD6, 0x28, 0xDB, 0x04, 0xC1, 0x00, 0x00);
|
||||
|
||||
|
7
reactos/lib/sdk/ksguid/ksguid.rbuild
Normal file
7
reactos/lib/sdk/ksguid/ksguid.rbuild
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
|
||||
<module name="ksguid" type="staticlibrary">
|
||||
<define name="_DISABLE_TIDENTS" />
|
||||
<define name="__USE_W32API" />
|
||||
<file>ksguid.c</file>
|
||||
</module>
|
Loading…
Reference in a new issue