summaryrefslogtreecommitdiffstats
path: root/dxsdk/Include/DShowIDL/dmodshow.idl
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/DShowIDL/dmodshow.idl
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 'dxsdk/Include/DShowIDL/dmodshow.idl')
-rw-r--r--dxsdk/Include/DShowIDL/dmodshow.idl33
1 files changed, 33 insertions, 0 deletions
diff --git a/dxsdk/Include/DShowIDL/dmodshow.idl b/dxsdk/Include/DShowIDL/dmodshow.idl
new file mode 100644
index 00000000..246f5ae6
--- /dev/null
+++ b/dxsdk/Include/DShowIDL/dmodshow.idl
@@ -0,0 +1,33 @@
+//------------------------------------------------------------------------------
+// File: DMODShow.idl
+//
+// Desc: This file will be processed by the MIDL tool to
+// produce dmodshow.h and proxy-stub code.
+//
+// Copyright (c) 1999 - 2002, Microsoft Corporation. All rights reserved.
+//------------------------------------------------------------------------------
+
+
+import "unknwn.idl";
+import "objidl.idl";
+import "mediaobj.idl";
+
+// 94297043-bd82-4dfd-b0de-8177739c6d20
+cpp_quote("DEFINE_GUID(CLSID_DMOWrapperFilter, 0x94297043,0xbd82,0x4dfd,0xb0,0xde,0x81,0x77,0x73,0x9c,0x6d,0x20);")
+// bcd5796c-bd52-4d30-ab76-70f975b89199
+cpp_quote("DEFINE_GUID(CLSID_DMOFilterCategory,0xbcd5796c,0xbd52,0x4d30,0xab,0x76,0x70,0xf9,0x75,0xb8,0x91,0x99);")
+
+
+[
+ object,
+ uuid(52d6f586-9f0f-4824-8fc8-e32ca04930c2),
+]
+interface IDMOWrapperFilter : IUnknown
+{
+ // Init is passed in the clsid (so it can call CoCreateInstance)
+ // and the catgory under which the DMO lives.
+ // Note that catDMO can be CLSID_NULL, in which case no special
+ // category-specific processing will be invoked in the wrapper filter.
+ HRESULT Init(REFCLSID clsidDMO, REFCLSID catDMO);
+}
+