summaryrefslogtreecommitdiffstats
path: root/sdk/dx8sdk/Include/ksguid.h
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-08-02 18:36:50 +0200
committerSergeanur <s.anureev@yandex.ua>2020-08-02 18:36:50 +0200
commita786dd45a4ebc6b91936b5e46d0ef0a9befc05af (patch)
treeced50966eaaf373f8733547046baf2bdc558662d /sdk/dx8sdk/Include/ksguid.h
parentMerge branch 'master' of https://github.com/GTAmodding/re3 into erorcun (diff)
downloadre3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar
re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.gz
re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.bz2
re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.lz
re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.xz
re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.tar.zst
re3-a786dd45a4ebc6b91936b5e46d0ef0a9befc05af.zip
Diffstat (limited to 'sdk/dx8sdk/Include/ksguid.h')
-rw-r--r--sdk/dx8sdk/Include/ksguid.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/sdk/dx8sdk/Include/ksguid.h b/sdk/dx8sdk/Include/ksguid.h
new file mode 100644
index 00000000..42cd2c70
--- /dev/null
+++ b/sdk/dx8sdk/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