summaryrefslogtreecommitdiffstats
path: root/dxsdk/Include/ksguid.h
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2019-06-02 10:25:55 +0200
committerGitHub <noreply@github.com>2019-06-02 10:25:55 +0200
commit9c26e46e17b421288f7653f4c9cff81b4b6cdfb0 (patch)
treec1b34122ddd4be0461a5310c964e8218b9f5781e /dxsdk/Include/ksguid.h
parentimplemented splashes; fixed zones (diff)
parentMerge branch 'master' into master (diff)
downloadre3-9c26e46e17b421288f7653f4c9cff81b4b6cdfb0.tar
re3-9c26e46e17b421288f7653f4c9cff81b4b6cdfb0.tar.gz
re3-9c26e46e17b421288f7653f4c9cff81b4b6cdfb0.tar.bz2
re3-9c26e46e17b421288f7653f4c9cff81b4b6cdfb0.tar.lz
re3-9c26e46e17b421288f7653f4c9cff81b4b6cdfb0.tar.xz
re3-9c26e46e17b421288f7653f4c9cff81b4b6cdfb0.tar.zst
re3-9c26e46e17b421288f7653f4c9cff81b4b6cdfb0.zip
Diffstat (limited to 'dxsdk/Include/ksguid.h')
-rw-r--r--dxsdk/Include/ksguid.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/dxsdk/Include/ksguid.h b/dxsdk/Include/ksguid.h
new file mode 100644
index 00000000..42cd2c70
--- /dev/null
+++ b/dxsdk/Include/ksguid.h
@@ -0,0 +1,29 @@
+/*++
+
+Copyright (c) Microsoft Corporation. All rights reserved.
+
+Module Name:
+
+ ksguid.h
+
+Abstract:
+
+ Define guids for non-C++.
+
+--*/
+
+#define INITGUID
+#include <guiddef.h>
+
+#if defined( DEFINE_GUIDEX )
+ #undef DEFINE_GUIDEX
+#endif
+#define DEFINE_GUIDEX(name) EXTERN_C const CDECL GUID __declspec(selectany) name = { STATICGUIDOF(name) }
+
+#ifndef STATICGUIDOF
+ #define STATICGUIDOF(guid) STATIC_##guid
+#endif // !defined(STATICGUIDOF)
+
+#if !defined( DEFINE_WAVEFORMATEX_GUID )
+#define DEFINE_WAVEFORMATEX_GUID(x) (USHORT)(x), 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71
+#endif