Zebediah Figura : include: Add dmodshow.idl and IDMOWrapperFilter.

Alexandre Julliard julliard at winehq.org
Tue Feb 18 16:13:46 CST 2020


Module: wine
Branch: master
Commit: d0a0505d38bb6f8860cc7bd4f7b7ea6501217996
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=d0a0505d38bb6f8860cc7bd4f7b7ea6501217996

Author: Zebediah Figura <zfigura at codeweavers.com>
Date:   Mon Feb 17 17:30:55 2020 -0600

include: Add dmodshow.idl and IDMOWrapperFilter.

Signed-off-by: Zebediah Figura <zfigura at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/dmoguids/dmoguids.c |  1 +
 include/Makefile.in      |  1 +
 include/dmodshow.idl     | 33 +++++++++++++++++++++++++++++++++
 3 files changed, 35 insertions(+)

diff --git a/dlls/dmoguids/dmoguids.c b/dlls/dmoguids/dmoguids.c
index b764c1f74f..15a0540170 100644
--- a/dlls/dmoguids/dmoguids.c
+++ b/dlls/dmoguids/dmoguids.c
@@ -25,3 +25,4 @@
 
 #include "mediaobj.h"
 #include "dmoreg.h"
+#include "dmodshow.h"
diff --git a/include/Makefile.in b/include/Makefile.in
index 0e5dd475e0..21b4233ecd 100644
--- a/include/Makefile.in
+++ b/include/Makefile.in
@@ -212,6 +212,7 @@ SOURCES = \
 	dmerror.h \
 	dmksctrl.h \
 	dmo.h \
+	dmodshow.idl \
 	dmoreg.h \
 	dmort.h \
 	dmplugin.h \
diff --git a/include/dmodshow.idl b/include/dmodshow.idl
new file mode 100644
index 0000000000..986b6c1ec3
--- /dev/null
+++ b/include/dmodshow.idl
@@ -0,0 +1,33 @@
+/*
+ * Copyright (C) 2018 Zebediah Figura
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+import "unknwn.idl";
+import "objidl.idl";
+import "mediaobj.idl";
+
+cpp_quote("DEFINE_GUID(CLSID_DMOWrapperFilter, 0x94297043,0xbd82,0x4dfd,0xb0,0xde,0x81,0x77,0x73,0x9c,0x6d,0x20);")
+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
+{
+    HRESULT Init(REFCLSID clsid, REFCLSID category);
+}




More information about the wine-cvs mailing list