summaryrefslogtreecommitdiffstats
path: root/dxsdk/Include/atsmedia.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/atsmedia.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 '')
-rw-r--r--dxsdk/Include/atsmedia.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/dxsdk/Include/atsmedia.h b/dxsdk/Include/atsmedia.h
new file mode 100644
index 00000000..3e268a55
--- /dev/null
+++ b/dxsdk/Include/atsmedia.h
@@ -0,0 +1,34 @@
+//------------------------------------------------------------------------------
+// File: ATSMedia.h
+//
+// Desc: Broadcast Driver Architecture Media Definitions for ATSC
+//
+// Copyright (c) 1996-2001, Microsoft Corporation. All rights reserved.
+//------------------------------------------------------------------------------
+
+
+#if !defined(_KSMEDIA_)
+#error KSMEDIA.H must be included before BDAMEDIA.H
+#endif // !defined(_KSMEDIA_)
+
+#if !defined(_BDAMEDIA_)
+#error BDAMEDIA.H must be included before ATSCMEDIA.H
+#endif // !defined(_KSMEDIA_)
+
+#if !defined(_ATSCMEDIA_)
+#define _ATSCMEDIA_
+
+
+//===========================================================================
+//
+// ATSC Network Type
+//
+//===========================================================================
+
+#define STATIC_BDANETWORKTYPE_ATSC\
+ 0x71985f51, 0x1ca1, 0x11d3, 0x9c, 0xc8, 0x0, 0xc0, 0x4f, 0x79, 0x71, 0xe0
+DEFINE_GUIDSTRUCT("71985F51-1CA1-11d3-9CC8-00C04F7971E0", BDANETWORKTYPE_ATSC);
+#define BDANETWORKTYPE_ATSC DEFINE_GUIDNAMED(BDANETWORKTYPE_ATSC)
+
+
+#endif // _ATSCMEDIA_