summaryrefslogtreecommitdiffstats
path: root/dxsdk/Include/ksguid.h
diff options
context:
space:
mode:
authorFire-Head <Fire-Head@users.noreply.github.com>2019-06-02 05:00:38 +0200
committerFire-Head <Fire-Head@users.noreply.github.com>2019-06-02 05:00:38 +0200
commitb1f9e28cd155459ab2843690c248ed9f4767bc3f (patch)
tree8e7d2a33d4c5109ea3c3562940268afc57d0915c /dxsdk/Include/ksguid.h
parentrw skeleton (diff)
downloadre3-b1f9e28cd155459ab2843690c248ed9f4767bc3f.tar
re3-b1f9e28cd155459ab2843690c248ed9f4767bc3f.tar.gz
re3-b1f9e28cd155459ab2843690c248ed9f4767bc3f.tar.bz2
re3-b1f9e28cd155459ab2843690c248ed9f4767bc3f.tar.lz
re3-b1f9e28cd155459ab2843690c248ed9f4767bc3f.tar.xz
re3-b1f9e28cd155459ab2843690c248ed9f4767bc3f.tar.zst
re3-b1f9e28cd155459ab2843690c248ed9f4767bc3f.zip
Diffstat (limited to '')
-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