Module: wine Branch: master Commit: af1181bbde5d6ef67f39d1a3ce58f400af0fb91c URL: https://source.winehq.org/git/wine.git/?a=commit;h=af1181bbde5d6ef67f39d1a3c...
Author: Rémi Bernon rbernon@codeweavers.com Date: Thu Jan 28 19:14:50 2021 +0100
include: Add IWMPRemoteMediaServices interface to wmp.idl.
Signed-off-by: Rémi Bernon rbernon@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
include/wmp.idl | 16 ++++++++++++++++ 1 file changed, 16 insertions(+)
diff --git a/include/wmp.idl b/include/wmp.idl index 442b7021383..8a146bdbea9 100644 --- a/include/wmp.idl +++ b/include/wmp.idl @@ -360,6 +360,22 @@ library WMPLib { HRESULT playItem([in] IWMPMedia *pIWMPMedia); }
+ [ + odl, + uuid(cbb92747-741f-44fe-ab5b-f1a48f3b2a59), + oleautomation + ] + interface IWMPRemoteMediaServices : IUnknown + { + HRESULT GetServiceType([out, retval] BSTR *type); + + HRESULT GetApplicationName([out, retval] BSTR *name); + + HRESULT GetScriptableObject([out, retval] BSTR *name, [out, retval] IDispatch **out); + + HRESULT GetCustomUIMode([out, retval] BSTR *file); + } + [ odl, uuid(9104d1ab-80c9-4fed-abf0-2e6417a6df14),