Commit 3889d950 authored by Mike McCormack's avatar Mike McCormack Committed by Alexandre Julliard

Add the missing interface method PromptAction to

IInternetZoneManager.
parent 6618b035
...@@ -353,6 +353,21 @@ static HRESULT WINAPI ZoneMgrImpl_SetZoneActionPolicy(IInternetZoneManager* ifac ...@@ -353,6 +353,21 @@ static HRESULT WINAPI ZoneMgrImpl_SetZoneActionPolicy(IInternetZoneManager* ifac
} }
/******************************************************************** /********************************************************************
* IInternetZoneManager_PromptAction
*/
static HRESULT WINAPI ZoneMgrImpl_PromptAction(IInternetZoneManager* iface,
DWORD dwAction,
HWND hwndParent,
LPCWSTR pwszUrl,
LPCWSTR pwszText,
DWORD dwPromptFlags)
{
FIXME("%p %08lx %p %s %s %08lx\n", iface, dwAction, hwndParent,
debugstr_w(pwszUrl), debugstr_w(pwszText), dwPromptFlags );
return E_NOTIMPL;
}
/********************************************************************
* IInternetZoneManager_LogAction * IInternetZoneManager_LogAction
*/ */
static HRESULT WINAPI ZoneMgrImpl_LogAction(IInternetZoneManager* iface, static HRESULT WINAPI ZoneMgrImpl_LogAction(IInternetZoneManager* iface,
...@@ -425,12 +440,14 @@ static IInternetZoneManagerVtbl ZoneMgrImplVtbl = { ...@@ -425,12 +440,14 @@ static IInternetZoneManagerVtbl ZoneMgrImplVtbl = {
ZoneMgrImpl_SetZoneCustomPolicy, ZoneMgrImpl_SetZoneCustomPolicy,
ZoneMgrImpl_GetZoneActionPolicy, ZoneMgrImpl_GetZoneActionPolicy,
ZoneMgrImpl_SetZoneActionPolicy, ZoneMgrImpl_SetZoneActionPolicy,
ZoneMgrImpl_PromptAction,
ZoneMgrImpl_LogAction, ZoneMgrImpl_LogAction,
ZoneMgrImpl_CreateZoneEnumerator, ZoneMgrImpl_CreateZoneEnumerator,
ZoneMgrImpl_GetZoneAt, ZoneMgrImpl_GetZoneAt,
ZoneMgrImpl_DestroyZoneEnumerator, ZoneMgrImpl_DestroyZoneEnumerator,
ZoneMgrImpl_CopyTemplatePoliciesToZone, ZoneMgrImpl_CopyTemplatePoliciesToZone,
}; };
HRESULT ZoneMgrImpl_Construct(IUnknown *pUnkOuter, LPVOID *ppobj) HRESULT ZoneMgrImpl_Construct(IUnknown *pUnkOuter, LPVOID *ppobj)
{ {
ZoneMgrImpl* ret = HeapAlloc(GetProcessHeap(), 0, sizeof(ZoneMgrImpl)); ZoneMgrImpl* ret = HeapAlloc(GetProcessHeap(), 0, sizeof(ZoneMgrImpl));
......
...@@ -987,6 +987,13 @@ interface IInternetZoneManager : IUnknown ...@@ -987,6 +987,13 @@ interface IInternetZoneManager : IUnknown
[in] DWORD cbPolicy, [in] DWORD cbPolicy,
[in] URLZONEREG urlZoneReg); [in] URLZONEREG urlZoneReg);
HRESULT PromptAction(
[in] DWORD dwAction,
[in] HWND hwndParent,
[in] LPCWSTR pwszUrl,
[in] LPCWSTR pwszText,
[in] DWORD dwPromptFlags );
HRESULT LogAction( HRESULT LogAction(
[in] DWORD dwAction, [in] DWORD dwAction,
[in] LPCWSTR pwszUrl, [in] LPCWSTR pwszUrl,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment