Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
437caf39
Commit
437caf39
authored
Jul 07, 2009
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Jul 08, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add IInternetZoneManagerEx2 interface for IE7.
parent
f7ec0476
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
80 additions
and
8 deletions
+80
-8
urlmon.idl
include/urlmon.idl
+80
-8
No files found.
include/urlmon.idl
View file @
437caf39
...
...
@@ -1210,20 +1210,26 @@ interface IInternetZoneManager : IUnknown
URLTEMPLATE_CUSTOM
=
0
x00000
,
URLTEMPLATE_PREDEFINED_MIN
=
0
x10000
,
URLTEMPLATE_LOW
=
0
x10000
,
URLTEMPLATE_MEDLOW
=
0
x10500
,
URLTEMPLATE_MEDIUM
=
0
x11000
,
URLTEMPLATE_MEDHIGH
=
0
x11500
,
URLTEMPLATE_HIGH
=
0
x12000
,
URLTEMPLATE_PREDEFINED_MAX
=
0
x20000
,
}
URLTEMPLATE
;
typedef
enum
{
ZAFLAGS_CUSTOM_EDIT
=
0
x00000001
,
ZAFLAGS_ADD_SITES
=
0
x00000002
,
ZAFLAGS_REQUIRE_VERIFICATION
=
0
x00000004
,
ZAFLAGS_INCLUDE_PROXY_OVERRIDE
=
0
x00000008
,
ZAFLAGS_INCLUDE_INTRANET_SITES
=
0
x00000010
,
ZAFLAGS_NO_UI
=
0
x00000020
,
ZAFLAGS_SUPPORTS_VERIFICATION
=
0
x00000040
,
ZAFLAGS_UNC_AS_INTRANET
=
0
x00000080
,
ZAFLAGS_CUSTOM_EDIT
=
0
x00000001
,
ZAFLAGS_ADD_SITES
=
0
x00000002
,
ZAFLAGS_REQUIRE_VERIFICATION
=
0
x00000004
,
ZAFLAGS_INCLUDE_PROXY_OVERRIDE
=
0
x00000008
,
ZAFLAGS_INCLUDE_INTRANET_SITES
=
0
x00000010
,
ZAFLAGS_NO_UI
=
0
x00000020
,
ZAFLAGS_SUPPORTS_VERIFICATION
=
0
x00000040
,
ZAFLAGS_UNC_AS_INTRANET
=
0
x00000080
,
ZAFLAGS_DETECT_INTRANET
=
0
x00000100
,
ZAFLAGS_USE_LOCKED_ZONES
=
0
x00010000
,
ZAFLAGS_VERIFY_TEMPLATE_SETTINGS
=
0
x00020000
,
ZAFLAGS_NO_CACHE
=
0
x00040000
,
}
ZAFLAGS
;
enum
{
...
...
@@ -1316,6 +1322,72 @@ interface IInternetZoneManager : IUnknown
[
in
]
DWORD
dwReserved
)
;
}
/*****************************************************************************
*
IInternetZoneManagerEx
interface
*/
[
local
,
object
,
uuid
(
A4C23339
-
8
E06
-431E-9
BF4
-
7
E711C085648
),
pointer_default
(
unique
)
]
interface
IInternetZoneManagerEx
:
IInternetZoneManager
{
HRESULT
GetZoneActionPolicyEx
(
[
in
]
DWORD
dwZone
,
[
in
]
DWORD
dwAction
,
[
out
]
BYTE
*
pPolicy
,
[
in
]
DWORD
cbPolicy
,
[
in
]
URLZONEREG
urlZoneReg
,
[
in
]
DWORD
dwFlags
)
;
HRESULT
SetZoneActionPolicyEx
(
[
in
]
DWORD
dwZone
,
[
in
]
DWORD
dwAction
,
[
in
]
BYTE
*
pPolicy
,
[
in
]
DWORD
cbPolicy
,
[
in
]
URLZONEREG
urlZoneReg
,
[
in
]
DWORD
dwFlags
)
;
}
/*****************************************************************************
*
IInternetZoneManagerEx2
interface
*/
cpp_quote
(
"#define SECURITY_IE_STATE_GREEN 0"
)
cpp_quote
(
"#define SECURITY_IE_STATE_RED 1"
)
[
local
,
object
,
uuid
(
EDC17559
-
DD5D
-
4846
-
8
EEF
-
8B
ECBA5A4ABF
),
pointer_default
(
unique
)
]
interface
IInternetZoneManagerEx2
:
IInternetZoneManagerEx
{
HRESULT
GetZoneAttributesEx
(
[
in
]
DWORD
dwZone
,
[
in
,
out
,
unique
]
ZONEATTRIBUTES
*
pZoneAttributes
,
[
in
]
DWORD
dwFlags
)
;
HRESULT
GetZoneSecurityState
(
[
in
]
DWORD
dwZoneIndex
,
[
in
]
BOOL
fRespectPolicy
,
[
in
,
out
]
LPDWORD
pdwState
,
[
in
,
out
]
BOOL
*
pfPolicyEncountered
)
;
HRESULT
GetIESecurityState
(
[
in
]
BOOL
fRespectPolicy
,
[
in
,
out
]
LPDWORD
pdwState
,
[
in
,
out
]
BOOL
*
pfPolicyEncountered
,
[
in
]
BOOL
fNoCache
)
;
HRESULT
FixInsecureSettings
(
void
)
;
}
typedef
struct
_tagSOFTDISTINFO
{
ULONG
cbSize
;
...
...
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