From 5a45763ebedcf386612f1f75b36ca1aa98b6d639 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Bernon?= Date: Mon, 1 Feb 2021 09:29:27 +0100 Subject: [PATCH] include: Add IWMPRenderConfig interface to wmprealestate.idl. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: RĂ©mi Bernon Signed-off-by: Alexandre Julliard --- include/wmprealestate.idl | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/include/wmprealestate.idl b/include/wmprealestate.idl index 34100a12aa8..948ace57eb8 100644 --- a/include/wmprealestate.idl +++ b/include/wmprealestate.idl @@ -29,3 +29,15 @@ interface IWMPVideoRenderConfig : IUnknown { [propput] HRESULT presenterActivate([in] IMFActivate *activate); } + +[ + odl, + uuid(959506c1-0314-4ec5-9e61-8528db5e5478), + oleautomation +] +interface IWMPRenderConfig : IUnknown +{ + [propput] HRESULT inProcOnly([in] BOOL fInProc); + + [propget] HRESULT inProcOnly([out, retval] BOOL *pfInProc); +}