summaryrefslogtreecommitdiffstats
path: root/sdk/dx8sdk/Include/DShowIDL/strmif.idl
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-08-02 18:49:12 +0200
committerSergeanur <s.anureev@yandex.ua>2020-08-02 18:49:12 +0200
commit3e24ae8812ca4a0031d82ea7f7393605b8a4283a (patch)
tree5cc79378e86970d3b63cbed173d627410ea90ca6 /sdk/dx8sdk/Include/DShowIDL/strmif.idl
parentMerge pull request #669 from erorcun/miami (diff)
parentMove sdk and eax (diff)
downloadre3-3e24ae8812ca4a0031d82ea7f7393605b8a4283a.tar
re3-3e24ae8812ca4a0031d82ea7f7393605b8a4283a.tar.gz
re3-3e24ae8812ca4a0031d82ea7f7393605b8a4283a.tar.bz2
re3-3e24ae8812ca4a0031d82ea7f7393605b8a4283a.tar.lz
re3-3e24ae8812ca4a0031d82ea7f7393605b8a4283a.tar.xz
re3-3e24ae8812ca4a0031d82ea7f7393605b8a4283a.tar.zst
re3-3e24ae8812ca4a0031d82ea7f7393605b8a4283a.zip
Diffstat (limited to 'sdk/dx8sdk/Include/DShowIDL/strmif.idl')
-rw-r--r--sdk/dx8sdk/Include/DShowIDL/strmif.idl51
1 files changed, 51 insertions, 0 deletions
diff --git a/sdk/dx8sdk/Include/DShowIDL/strmif.idl b/sdk/dx8sdk/Include/DShowIDL/strmif.idl
new file mode 100644
index 00000000..87da1d8b
--- /dev/null
+++ b/sdk/dx8sdk/Include/DShowIDL/strmif.idl
@@ -0,0 +1,51 @@
+//------------------------------------------------------------------------------
+// File: StrmIf.idl
+//
+// Desc: ActiveMovie interface definitions.
+//
+// Copyright (c) 1992 - 2002, Microsoft Corporation. All rights reserved.
+//------------------------------------------------------------------------------
+
+//
+// Temporarily disable the /W4 compiler warning C4201, which will be
+// reported by all apps which include streams.h or dshow.h, which both
+// include the strmif.h generated by this IDL file.
+//
+cpp_quote("//+-------------------------------------------------------------------------")
+cpp_quote("//")
+cpp_quote("// Copyright (C) Microsoft Corporation, 1999-2002.")
+cpp_quote("//")
+cpp_quote("//--------------------------------------------------------------------------")
+cpp_quote("// Disable /W4 compiler warning C4201: nameless struct/union")
+cpp_quote("#pragma warning(push)")
+cpp_quote("#pragma warning(disable:4201) // Disable C4201: nameless struct/union")
+cpp_quote(" ") // Blank space
+
+
+import "unknwn.idl";
+import "objidl.idl"; // for IPersist (IFilter's root)
+
+#include "devenum.idl"
+
+// core interfaces
+#include "axcore.idl"
+
+// extended, ActiveMovie-only interfaces
+#include "axextend.idl"
+
+// application interfaces for DVD
+#include "dvdif.idl"
+
+// Dynamic graph stuff
+#include "dyngraph.idl"
+
+
+// Video Mixing Renderer
+#include "VMRender.idl"
+
+
+//
+// Restore the previous setting for C4201 compiler warning
+//
+cpp_quote("// Restore the previous setting for C4201 compiler warning")
+cpp_quote("#pragma warning(pop)")