diff options
author | Fire-Head <Fire-Head@users.noreply.github.com> | 2019-06-02 05:00:38 +0200 |
---|---|---|
committer | Fire-Head <Fire-Head@users.noreply.github.com> | 2019-06-02 05:00:38 +0200 |
commit | b1f9e28cd155459ab2843690c248ed9f4767bc3f (patch) | |
tree | 8e7d2a33d4c5109ea3c3562940268afc57d0915c /dxsdk/Include/DShowIDL/strmif.idl | |
parent | rw skeleton (diff) | |
download | re3-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/DShowIDL/strmif.idl | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/dxsdk/Include/DShowIDL/strmif.idl b/dxsdk/Include/DShowIDL/strmif.idl new file mode 100644 index 00000000..87da1d8b --- /dev/null +++ b/dxsdk/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)") |