Module: wine Branch: master Commit: 3eb33e94a2b719cede5d27a7c6860e4c73660bc7 URL: https://source.winehq.org/git/wine.git/?a=commit;h=3eb33e94a2b719cede5d27a7c...
Author: Zebediah Figura zfigura@codeweavers.com Date: Fri Oct 15 17:28:09 2021 -0500
include: Add IWMCredentialCallback.
Signed-off-by: Zebediah Figura zfigura@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
include/wmsdkidl.idl | 11 +++++++++++ 1 file changed, 11 insertions(+)
diff --git a/include/wmsdkidl.idl b/include/wmsdkidl.idl index 0adde5e2dd9..f276d642a03 100644 --- a/include/wmsdkidl.idl +++ b/include/wmsdkidl.idl @@ -1913,6 +1913,17 @@ interface IWMIStreamProps : IUnknown HRESULT GetProperty(const WCHAR *name, WMT_ATTR_DATATYPE *type, BYTE *value, DWORD *size); }
+[ + object, + local, + uuid(342e0eb7-e651-450c-975b-2ace2c90c48e), +] +interface IWMCredentialCallback : IUnknown +{ + HRESULT AcquireCredentials(WCHAR *realm, WCHAR *site, WCHAR *username, DWORD username_size, + WCHAR *password, DWORD password_size, HRESULT hr, DWORD *flags); +} + cpp_quote("HRESULT WINAPI WMCheckURLExtension(LPCWSTR);") cpp_quote("HRESULT WINAPI WMCheckURLScheme(LPCWSTR);") cpp_quote("HRESULT WINAPI WMCreateWriter(IUnknown*,IWMWriter**);")