2 * Internet Security and Zone Manager
4 * Copyright (c) 2004 Huw D M Davies
5 * Copyright 2004 Jacek Caban
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
31 #include "wine/debug.h"
33 #include "wine/unicode.h"
35 #include "urlmon_main.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(urlmon
);
39 /***********************************************************************
40 * InternetSecurityManager implementation
44 const IInternetSecurityManagerVtbl
* lpInternetSecurityManagerVtbl
;
48 IInternetSecurityMgrSite
*mgrsite
;
49 IInternetSecurityManager
*custom_manager
;
52 #define SECMGR_THIS(iface) DEFINE_THIS(SecManagerImpl, InternetSecurityManager, iface)
54 static HRESULT
map_url_to_zone(LPCWSTR url
, DWORD
*zone
)
61 static const WCHAR wszZoneMapProtocolKey
[] =
62 {'S','o','f','t','w','a','r','e','\\',
63 'M','i','c','r','o','s','o','f','t','\\',
64 'W','i','n','d','o','w','s','\\',
65 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
66 'I','n','t','e','r','n','e','t',' ','S','e','t','t','i','n','g','s','\\',
67 'Z','o','n','e','M','a','p','\\',
68 'P','r','o','t','o','c','o','l','D','e','f','a','u','l','t','s',0};
69 static const WCHAR wszFile
[] = {'f','i','l','e',0};
73 hres
= CoInternetParseUrl(url
, PARSE_SCHEMA
, 0, schema
, sizeof(schema
)/sizeof(WCHAR
), &size
, 0);
79 /* file protocol is a special case */
80 if(!strcmpW(schema
, wszFile
)) {
83 hres
= CoInternetParseUrl(url
, PARSE_PATH_FROM_URL
, 0, path
,
84 sizeof(path
)/sizeof(WCHAR
), &size
, 0);
86 if(SUCCEEDED(hres
) && strchrW(path
, '\\')) {
92 WARN("domains are not yet implemented\n");
94 res
= RegOpenKeyW(HKEY_CURRENT_USER
, wszZoneMapProtocolKey
, &hkey
);
95 if(res
!= ERROR_SUCCESS
) {
96 ERR("Could not open key %s\n", debugstr_w(wszZoneMapProtocolKey
));
100 size
= sizeof(DWORD
);
101 res
= RegQueryValueExW(hkey
, schema
, NULL
, NULL
, (PBYTE
)zone
, &size
);
103 if(res
== ERROR_SUCCESS
)
106 res
= RegOpenKeyW(HKEY_LOCAL_MACHINE
, wszZoneMapProtocolKey
, &hkey
);
107 if(res
!= ERROR_SUCCESS
) {
108 ERR("Could not open key %s\n", debugstr_w(wszZoneMapProtocolKey
));
112 size
= sizeof(DWORD
);
113 res
= RegQueryValueExW(hkey
, schema
, NULL
, NULL
, (PBYTE
)zone
, &size
);
115 if(res
== ERROR_SUCCESS
)
122 static HRESULT WINAPI
SecManagerImpl_QueryInterface(IInternetSecurityManager
* iface
,REFIID riid
,void** ppvObject
)
124 SecManagerImpl
*This
= SECMGR_THIS(iface
);
126 TRACE("(%p)->(%s,%p)\n",This
,debugstr_guid(riid
),ppvObject
);
128 /* Perform a sanity check on the parameters.*/
129 if ( (This
==0) || (ppvObject
==0) )
132 /* Initialize the return parameter */
135 /* Compare the riid with the interface IDs implemented by this object.*/
136 if (IsEqualIID(&IID_IUnknown
, riid
) ||
137 IsEqualIID(&IID_IInternetSecurityManager
, riid
))
140 /* Check that we obtained an interface.*/
142 WARN("not supported interface %s\n", debugstr_guid(riid
));
143 return E_NOINTERFACE
;
146 /* Query Interface always increases the reference count by one when it is successful */
147 IInternetSecurityManager_AddRef(iface
);
152 static ULONG WINAPI
SecManagerImpl_AddRef(IInternetSecurityManager
* iface
)
154 SecManagerImpl
*This
= SECMGR_THIS(iface
);
155 ULONG refCount
= InterlockedIncrement(&This
->ref
);
157 TRACE("(%p) ref=%u\n", This
, refCount
);
162 static ULONG WINAPI
SecManagerImpl_Release(IInternetSecurityManager
* iface
)
164 SecManagerImpl
*This
= SECMGR_THIS(iface
);
165 ULONG refCount
= InterlockedDecrement(&This
->ref
);
167 TRACE("(%p) ref=%u\n", This
, refCount
);
169 /* destroy the object if there's no more reference on it */
172 IInternetSecurityMgrSite_Release(This
->mgrsite
);
173 if(This
->custom_manager
)
174 IInternetSecurityManager_Release(This
->custom_manager
);
176 HeapFree(GetProcessHeap(),0,This
);
178 URLMON_UnlockModule();
184 static HRESULT WINAPI
SecManagerImpl_SetSecuritySite(IInternetSecurityManager
*iface
,
185 IInternetSecurityMgrSite
*pSite
)
187 SecManagerImpl
*This
= SECMGR_THIS(iface
);
189 TRACE("(%p)->(%p)\n", This
, pSite
);
192 IInternetSecurityMgrSite_Release(This
->mgrsite
);
194 if(This
->custom_manager
) {
195 IInternetSecurityManager_Release(This
->custom_manager
);
196 This
->custom_manager
= NULL
;
199 This
->mgrsite
= pSite
;
202 IServiceProvider
*servprov
;
205 IInternetSecurityMgrSite_AddRef(pSite
);
207 hres
= IInternetSecurityMgrSite_QueryInterface(pSite
, &IID_IServiceProvider
,
209 if(SUCCEEDED(hres
)) {
210 IServiceProvider_QueryService(servprov
, &SID_SInternetSecurityManager
,
211 &IID_IInternetSecurityManager
, (void**)&This
->custom_manager
);
212 IServiceProvider_Release(servprov
);
219 static HRESULT WINAPI
SecManagerImpl_GetSecuritySite(IInternetSecurityManager
*iface
,
220 IInternetSecurityMgrSite
**ppSite
)
222 SecManagerImpl
*This
= SECMGR_THIS(iface
);
224 TRACE("(%p)->(%p)\n", This
, ppSite
);
230 IInternetSecurityMgrSite_AddRef(This
->mgrsite
);
232 *ppSite
= This
->mgrsite
;
236 static HRESULT WINAPI
SecManagerImpl_MapUrlToZone(IInternetSecurityManager
*iface
,
237 LPCWSTR pwszUrl
, DWORD
*pdwZone
,
240 SecManagerImpl
*This
= SECMGR_THIS(iface
);
245 TRACE("(%p)->(%s %p %08x)\n", iface
, debugstr_w(pwszUrl
), pdwZone
, dwFlags
);
247 if(This
->custom_manager
) {
248 hres
= IInternetSecurityManager_MapUrlToZone(This
->custom_manager
,
249 pwszUrl
, pdwZone
, dwFlags
);
250 if(hres
!= INET_E_DEFAULT_ACTION
)
258 FIXME("not supported flags: %08x\n", dwFlags
);
260 size
= (strlenW(pwszUrl
)+16) * sizeof(WCHAR
);
261 url
= HeapAlloc(GetProcessHeap(), 0, size
);
263 hres
= CoInternetParseUrl(pwszUrl
, PARSE_SECURITY_URL
, 0, url
, size
/sizeof(WCHAR
), &size
, 0);
265 memcpy(url
, pwszUrl
, size
);
267 hres
= map_url_to_zone(url
, pdwZone
);
269 HeapFree(GetProcessHeap(), 0, url
);
274 static HRESULT WINAPI
SecManagerImpl_GetSecurityId(IInternetSecurityManager
*iface
,
275 LPCWSTR pwszUrl
, BYTE
*pbSecurityId
, DWORD
*pcbSecurityId
, DWORD_PTR dwReserved
)
277 SecManagerImpl
*This
= SECMGR_THIS(iface
);
278 LPWSTR buf
, ptr
, ptr2
;
279 DWORD size
, zone
, len
;
282 static const WCHAR wszFile
[] = {'f','i','l','e',':'};
284 TRACE("(%p)->(%s %p %p %08lx)\n", iface
, debugstr_w(pwszUrl
), pbSecurityId
,
285 pcbSecurityId
, dwReserved
);
287 if(This
->custom_manager
) {
288 hres
= IInternetSecurityManager_GetSecurityId(This
->custom_manager
,
289 pwszUrl
, pbSecurityId
, pcbSecurityId
, dwReserved
);
290 if(hres
!= INET_E_DEFAULT_ACTION
)
294 if(!pwszUrl
|| !pbSecurityId
|| !pcbSecurityId
)
298 FIXME("dwReserved is not supported\n");
300 len
= strlenW(pwszUrl
)+1;
301 buf
= HeapAlloc(GetProcessHeap(), 0, (len
+16)*sizeof(WCHAR
));
303 hres
= CoInternetParseUrl(pwszUrl
, PARSE_SECURITY_URL
, 0, buf
, len
, &size
, 0);
305 memcpy(buf
, pwszUrl
, len
*sizeof(WCHAR
));
307 hres
= map_url_to_zone(buf
, &zone
);
309 HeapFree(GetProcessHeap(), 0, buf
);
310 return hres
== 0x80041001 ? E_INVALIDARG
: hres
;
313 /* file protocol is a special case */
314 if(strlenW(pwszUrl
) >= sizeof(wszFile
)/sizeof(WCHAR
)
315 && !memcmp(buf
, wszFile
, sizeof(wszFile
))) {
317 static const BYTE secidFile
[] = {'f','i','l','e',':'};
319 if(*pcbSecurityId
< sizeof(secidFile
)+sizeof(zone
))
320 return HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER
);
322 memcpy(pbSecurityId
, secidFile
, sizeof(secidFile
));
323 *(DWORD
*)(pbSecurityId
+sizeof(secidFile
)) = zone
;
325 *pcbSecurityId
= sizeof(secidFile
)+sizeof(zone
);
329 ptr
= strchrW(buf
, ':');
334 memmove(ptr
, ptr2
, (strlenW(ptr2
)+1)*sizeof(WCHAR
));
336 ptr
= strchrW(ptr
, '/');
340 len
= WideCharToMultiByte(CP_ACP
, 0, buf
, -1, NULL
, 0, NULL
, NULL
)-1;
342 if(len
+sizeof(DWORD
) > *pcbSecurityId
)
343 return HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER
);
345 WideCharToMultiByte(CP_ACP
, 0, buf
, -1, (LPSTR
)pbSecurityId
, -1, NULL
, NULL
);
346 HeapFree(GetProcessHeap(), 0, buf
);
348 *(DWORD
*)(pbSecurityId
+len
) = zone
;
350 *pcbSecurityId
= len
+sizeof(DWORD
);
356 static HRESULT WINAPI
SecManagerImpl_ProcessUrlAction(IInternetSecurityManager
*iface
,
357 LPCWSTR pwszUrl
, DWORD dwAction
,
358 BYTE
*pPolicy
, DWORD cbPolicy
,
359 BYTE
*pContext
, DWORD cbContext
,
360 DWORD dwFlags
, DWORD dwReserved
)
362 SecManagerImpl
*This
= SECMGR_THIS(iface
);
365 TRACE("(%p)->(%s %08x %p %08x %p %08x %08x %08x)\n", iface
, debugstr_w(pwszUrl
), dwAction
,
366 pPolicy
, cbPolicy
, pContext
, cbContext
, dwFlags
, dwReserved
);
368 if(This
->custom_manager
) {
369 hres
= IInternetSecurityManager_ProcessUrlAction(This
->custom_manager
, pwszUrl
, dwAction
,
370 pPolicy
, cbPolicy
, pContext
, cbContext
, dwFlags
, dwReserved
);
371 if(hres
!= INET_E_DEFAULT_ACTION
)
375 FIXME("Default action is not implemented\n");
380 static HRESULT WINAPI
SecManagerImpl_QueryCustomPolicy(IInternetSecurityManager
*iface
,
381 LPCWSTR pwszUrl
, REFGUID guidKey
,
382 BYTE
**ppPolicy
, DWORD
*pcbPolicy
,
383 BYTE
*pContext
, DWORD cbContext
,
386 SecManagerImpl
*This
= SECMGR_THIS(iface
);
389 TRACE("(%p)->(%s %s %p %p %p %08x %08x )\n", iface
, debugstr_w(pwszUrl
), debugstr_guid(guidKey
),
390 ppPolicy
, pcbPolicy
, pContext
, cbContext
, dwReserved
);
392 if(This
->custom_manager
) {
393 hres
= IInternetSecurityManager_QueryCustomPolicy(This
->custom_manager
, pwszUrl
, guidKey
,
394 ppPolicy
, pcbPolicy
, pContext
, cbContext
, dwReserved
);
395 if(hres
!= INET_E_DEFAULT_ACTION
)
399 FIXME("Default action is not implemented\n");
403 static HRESULT WINAPI
SecManagerImpl_SetZoneMapping(IInternetSecurityManager
*iface
,
404 DWORD dwZone
, LPCWSTR pwszPattern
, DWORD dwFlags
)
406 SecManagerImpl
*This
= SECMGR_THIS(iface
);
409 TRACE("(%p)->(%08x %s %08x)\n", iface
, dwZone
, debugstr_w(pwszPattern
),dwFlags
);
411 if(This
->custom_manager
) {
412 hres
= IInternetSecurityManager_SetZoneMapping(This
->custom_manager
, dwZone
,
413 pwszPattern
, dwFlags
);
414 if(hres
!= INET_E_DEFAULT_ACTION
)
418 FIXME("Default action is not implemented\n");
422 static HRESULT WINAPI
SecManagerImpl_GetZoneMappings(IInternetSecurityManager
*iface
,
423 DWORD dwZone
, IEnumString
**ppenumString
, DWORD dwFlags
)
425 SecManagerImpl
*This
= SECMGR_THIS(iface
);
428 TRACE("(%p)->(%08x %p %08x)\n", iface
, dwZone
, ppenumString
,dwFlags
);
430 if(This
->custom_manager
) {
431 hres
= IInternetSecurityManager_GetZoneMappings(This
->custom_manager
, dwZone
,
432 ppenumString
, dwFlags
);
433 if(hres
!= INET_E_DEFAULT_ACTION
)
437 FIXME("Default action is not implemented\n");
441 static const IInternetSecurityManagerVtbl VT_SecManagerImpl
=
443 SecManagerImpl_QueryInterface
,
444 SecManagerImpl_AddRef
,
445 SecManagerImpl_Release
,
446 SecManagerImpl_SetSecuritySite
,
447 SecManagerImpl_GetSecuritySite
,
448 SecManagerImpl_MapUrlToZone
,
449 SecManagerImpl_GetSecurityId
,
450 SecManagerImpl_ProcessUrlAction
,
451 SecManagerImpl_QueryCustomPolicy
,
452 SecManagerImpl_SetZoneMapping
,
453 SecManagerImpl_GetZoneMappings
456 HRESULT
SecManagerImpl_Construct(IUnknown
*pUnkOuter
, LPVOID
*ppobj
)
458 SecManagerImpl
*This
;
460 TRACE("(%p,%p)\n",pUnkOuter
,ppobj
);
461 This
= HeapAlloc(GetProcessHeap(), 0, sizeof(*This
));
463 /* Initialize the virtual function table. */
464 This
->lpInternetSecurityManagerVtbl
= &VT_SecManagerImpl
;
467 This
->mgrsite
= NULL
;
468 This
->custom_manager
= NULL
;
477 /***********************************************************************
478 * InternetZoneManager implementation
482 const IInternetZoneManagerVtbl
* lpVtbl
;
486 static HRESULT
open_zone_key(DWORD zone
, HKEY
*hkey
, URLZONEREG zone_reg
)
488 static const WCHAR wszZonesKey
[] =
489 {'S','o','f','t','w','a','r','e','\\',
490 'M','i','c','r','o','s','o','f','t','\\',
491 'W','i','n','d','o','w','s','\\',
492 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
493 'I','n','t','e','r','n','e','t',' ','S','e','t','t','i','n','g','s','\\',
494 'Z','o','n','e','s','\\',0};
495 static const WCHAR wszFormat
[] = {'%','s','%','l','d',0};
497 WCHAR key_name
[sizeof(wszZonesKey
)/sizeof(WCHAR
)+8];
502 case URLZONEREG_DEFAULT
: /* FIXME: TEST */
503 case URLZONEREG_HKCU
:
504 parent_key
= HKEY_CURRENT_USER
;
506 case URLZONEREG_HKLM
:
507 parent_key
= HKEY_LOCAL_MACHINE
;
510 WARN("Unknown URLZONEREG: %d\n", zone_reg
);
514 wsprintfW(key_name
, wszFormat
, wszZonesKey
, zone
);
516 res
= RegOpenKeyW(parent_key
, key_name
, hkey
);
518 if(res
!= ERROR_SUCCESS
) {
519 WARN("RegOpenKey failed\n");
526 /********************************************************************
527 * IInternetZoneManager_QueryInterface
529 static HRESULT WINAPI
ZoneMgrImpl_QueryInterface(IInternetZoneManager
* iface
, REFIID riid
, void** ppvObject
)
531 ZoneMgrImpl
* This
= (ZoneMgrImpl
*)iface
;
533 TRACE("(%p)->(%s,%p)\n", This
, debugstr_guid(riid
), ppvObject
);
535 if(!This
|| !ppvObject
)
538 if(!IsEqualIID(&IID_IUnknown
, riid
) && !IsEqualIID(&IID_IInternetZoneManager
, riid
)) {
539 FIXME("Unknown interface: %s\n", debugstr_guid(riid
));
541 return E_NOINTERFACE
;
545 IInternetZoneManager_AddRef(iface
);
550 /********************************************************************
551 * IInternetZoneManager_AddRef
553 static ULONG WINAPI
ZoneMgrImpl_AddRef(IInternetZoneManager
* iface
)
555 ZoneMgrImpl
* This
= (ZoneMgrImpl
*)iface
;
556 ULONG refCount
= InterlockedIncrement(&This
->ref
);
558 TRACE("(%p)->(ref before=%u)\n",This
, refCount
- 1);
563 /********************************************************************
564 * IInternetZoneManager_Release
566 static ULONG WINAPI
ZoneMgrImpl_Release(IInternetZoneManager
* iface
)
568 ZoneMgrImpl
* This
= (ZoneMgrImpl
*)iface
;
569 ULONG refCount
= InterlockedDecrement(&This
->ref
);
571 TRACE("(%p)->(ref before=%u)\n",This
, refCount
+ 1);
574 HeapFree(GetProcessHeap(), 0, This
);
575 URLMON_UnlockModule();
581 /********************************************************************
582 * IInternetZoneManager_GetZoneAttributes
584 static HRESULT WINAPI
ZoneMgrImpl_GetZoneAttributes(IInternetZoneManager
* iface
,
586 ZONEATTRIBUTES
* pZoneAttributes
)
588 FIXME("(%p)->(%d %p) stub\n", iface
, dwZone
, pZoneAttributes
);
592 /********************************************************************
593 * IInternetZoneManager_SetZoneAttributes
595 static HRESULT WINAPI
ZoneMgrImpl_SetZoneAttributes(IInternetZoneManager
* iface
,
597 ZONEATTRIBUTES
* pZoneAttributes
)
599 FIXME("(%p)->(%08x %p) stub\n", iface
, dwZone
, pZoneAttributes
);
603 /********************************************************************
604 * IInternetZoneManager_GetZoneCustomPolicy
606 static HRESULT WINAPI
ZoneMgrImpl_GetZoneCustomPolicy(IInternetZoneManager
* iface
,
611 URLZONEREG ulrZoneReg
)
613 FIXME("(%p)->(%08x %s %p %p %08x) stub\n", iface
, dwZone
, debugstr_guid(guidKey
),
614 ppPolicy
, pcbPolicy
, ulrZoneReg
);
618 /********************************************************************
619 * IInternetZoneManager_SetZoneCustomPolicy
621 static HRESULT WINAPI
ZoneMgrImpl_SetZoneCustomPolicy(IInternetZoneManager
* iface
,
626 URLZONEREG ulrZoneReg
)
628 FIXME("(%p)->(%08x %s %p %08x %08x) stub\n", iface
, dwZone
, debugstr_guid(guidKey
),
629 ppPolicy
, cbPolicy
, ulrZoneReg
);
633 /********************************************************************
634 * IInternetZoneManager_GetZoneActionPolicy
636 static HRESULT WINAPI
ZoneMgrImpl_GetZoneActionPolicy(IInternetZoneManager
* iface
,
637 DWORD dwZone
, DWORD dwAction
, BYTE
* pPolicy
, DWORD cbPolicy
, URLZONEREG urlZoneReg
)
642 DWORD size
= cbPolicy
;
645 static const WCHAR wszFormat
[] = {'%','l','X',0};
647 TRACE("(%p)->(%d %08x %p %d %d)\n", iface
, dwZone
, dwAction
, pPolicy
,
648 cbPolicy
, urlZoneReg
);
653 hres
= open_zone_key(dwZone
, &hkey
, urlZoneReg
);
657 wsprintfW(action
, wszFormat
, dwAction
);
659 res
= RegQueryValueExW(hkey
, action
, NULL
, NULL
, pPolicy
, &size
);
660 if(res
== ERROR_MORE_DATA
) {
662 }else if(res
== ERROR_FILE_NOT_FOUND
) {
664 }else if(res
!= ERROR_SUCCESS
) {
665 ERR("RegQueryValue failed: %d\n", res
);
674 /********************************************************************
675 * IInternetZoneManager_SetZoneActionPolicy
677 static HRESULT WINAPI
ZoneMgrImpl_SetZoneActionPolicy(IInternetZoneManager
* iface
,
682 URLZONEREG urlZoneReg
)
684 FIXME("(%p)->(%08x %08x %p %08x %08x) stub\n", iface
, dwZone
, dwAction
, pPolicy
,
685 cbPolicy
, urlZoneReg
);
689 /********************************************************************
690 * IInternetZoneManager_PromptAction
692 static HRESULT WINAPI
ZoneMgrImpl_PromptAction(IInternetZoneManager
* iface
,
699 FIXME("%p %08x %p %s %s %08x\n", iface
, dwAction
, hwndParent
,
700 debugstr_w(pwszUrl
), debugstr_w(pwszText
), dwPromptFlags
);
704 /********************************************************************
705 * IInternetZoneManager_LogAction
707 static HRESULT WINAPI
ZoneMgrImpl_LogAction(IInternetZoneManager
* iface
,
713 FIXME("(%p)->(%08x %s %s %08x) stub\n", iface
, dwAction
, debugstr_w(pwszUrl
),
714 debugstr_w(pwszText
), dwLogFlags
);
718 /********************************************************************
719 * IInternetZoneManager_CreateZoneEnumerator
721 static HRESULT WINAPI
ZoneMgrImpl_CreateZoneEnumerator(IInternetZoneManager
* iface
,
726 FIXME("(%p)->(%p %p %08x) stub\n", iface
, pdwEnum
, pdwCount
, dwFlags
);
730 /********************************************************************
731 * IInternetZoneManager_GetZoneAt
733 static HRESULT WINAPI
ZoneMgrImpl_GetZoneAt(IInternetZoneManager
* iface
,
738 FIXME("(%p)->(%08x %08x %p) stub\n", iface
, dwEnum
, dwIndex
, pdwZone
);
742 /********************************************************************
743 * IInternetZoneManager_DestroyZoneEnumerator
745 static HRESULT WINAPI
ZoneMgrImpl_DestroyZoneEnumerator(IInternetZoneManager
* iface
,
748 FIXME("(%p)->(%08x) stub\n", iface
, dwEnum
);
752 /********************************************************************
753 * IInternetZoneManager_CopyTemplatePoliciesToZone
755 static HRESULT WINAPI
ZoneMgrImpl_CopyTemplatePoliciesToZone(IInternetZoneManager
* iface
,
760 FIXME("(%p)->(%08x %08x %08x) stub\n", iface
, dwTemplate
, dwZone
, dwReserved
);
764 /********************************************************************
765 * IInternetZoneManager_Construct
767 static const IInternetZoneManagerVtbl ZoneMgrImplVtbl
= {
768 ZoneMgrImpl_QueryInterface
,
771 ZoneMgrImpl_GetZoneAttributes
,
772 ZoneMgrImpl_SetZoneAttributes
,
773 ZoneMgrImpl_GetZoneCustomPolicy
,
774 ZoneMgrImpl_SetZoneCustomPolicy
,
775 ZoneMgrImpl_GetZoneActionPolicy
,
776 ZoneMgrImpl_SetZoneActionPolicy
,
777 ZoneMgrImpl_PromptAction
,
778 ZoneMgrImpl_LogAction
,
779 ZoneMgrImpl_CreateZoneEnumerator
,
780 ZoneMgrImpl_GetZoneAt
,
781 ZoneMgrImpl_DestroyZoneEnumerator
,
782 ZoneMgrImpl_CopyTemplatePoliciesToZone
,
785 HRESULT
ZoneMgrImpl_Construct(IUnknown
*pUnkOuter
, LPVOID
*ppobj
)
787 ZoneMgrImpl
* ret
= HeapAlloc(GetProcessHeap(), 0, sizeof(ZoneMgrImpl
));
789 TRACE("(%p %p)\n", pUnkOuter
, ppobj
);
790 ret
->lpVtbl
= &ZoneMgrImplVtbl
;
792 *ppobj
= (IInternetZoneManager
*)ret
;
799 /***********************************************************************
800 * CoInternetCreateSecurityManager (URLMON.@)
803 HRESULT WINAPI
CoInternetCreateSecurityManager( IServiceProvider
*pSP
,
804 IInternetSecurityManager
**ppSM
, DWORD dwReserved
)
806 TRACE("%p %p %d\n", pSP
, ppSM
, dwReserved
);
809 FIXME("pSP not supported\n");
811 return SecManagerImpl_Construct(NULL
, (void**) ppSM
);
814 /********************************************************************
815 * CoInternetCreateZoneManager (URLMON.@)
817 HRESULT WINAPI
CoInternetCreateZoneManager(IServiceProvider
* pSP
, IInternetZoneManager
** ppZM
, DWORD dwReserved
)
819 TRACE("(%p %p %x)\n", pSP
, ppZM
, dwReserved
);
820 return ZoneMgrImpl_Construct(NULL
, (void**)ppZM
);