Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
3889d950
Commit
3889d950
authored
May 24, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
May 24, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add the missing interface method PromptAction to
IInternetZoneManager.
parent
6618b035
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
0 deletions
+24
-0
sec_mgr.c
dlls/urlmon/sec_mgr.c
+17
-0
urlmon.idl
include/urlmon.idl
+7
-0
No files found.
dlls/urlmon/sec_mgr.c
View file @
3889d950
...
@@ -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
));
...
...
include/urlmon.idl
View file @
3889d950
...
@@ -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
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment