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
2ed82514
Commit
2ed82514
authored
Sep 28, 2009
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 28, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon.idl: Added IInternetHostSecurityManager and CONFIRMSAFETY declarations.
parent
f93c9d9b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
0 deletions
+47
-0
urlmon.idl
include/urlmon.idl
+47
-0
No files found.
include/urlmon.idl
View file @
2ed82514
...
...
@@ -1065,6 +1065,42 @@ cpp_quote("#define MAX_SIZE_SECURITY_ID 512")
[
in
]
DWORD
dwFlags
)
;
}
/*****************************************************************************
*
IInternetHostSecurityManager
interface
*/
cpp_quote
(
"#define SID_SInternetHostSecurityManager IID_IInternetHostSecurityManager"
)
[
local
,
object
,
uuid
(
3
af280b6
-
cb3f
-
11
d0
-891e-00
c04fb6bfc4
),
pointer_default
(
unique
)
]
interface
IInternetHostSecurityManager
:
IUnknown
{
HRESULT
GetSecurityId
(
[
out
,
size_is
(
*
pcbSecurityId
)
]
BYTE
*
pbSecurityId
,
[
in
,
out
]
DWORD
*
pcbSecurityId
,
[
in
]
DWORD_PTR
dwReserved
)
;
HRESULT
ProcessUrlAction
(
[
in
]
DWORD
dwAction
,
[
out
,
size_is
(
cbPolicy
)
]
BYTE
*
pPolicy
,
[
in
]
DWORD
cbPolicy
,
[
in
]
BYTE
*
pContext
,
[
in
]
DWORD
cbContext
,
[
in
]
DWORD
dwFlags
,
[
in
]
DWORD
dwReserved
)
;
HRESULT
QueryCustomPolicy
(
[
in
]
REFGUID
guidKey
,
[
out
,
size_is
(,
*
pcbPolicy
)
]
BYTE
**
ppPolicy
,
[
out
]
DWORD
*
pcbPolicy
,
[
in
]
BYTE
*
pContext
,
[
in
]
DWORD
cbContext
,
[
in
]
DWORD
dwReserved
)
;
}
cpp_quote
(
"#define URLACTION_MIN 0x00001000"
)
cpp_quote
(
"#define URLACTION_DOWNLOAD_MIN 0x00001000"
)
cpp_quote
(
"#define URLACTION_DOWNLOAD_SIGNED_ACTIVEX 0x00001001"
)
...
...
@@ -1643,6 +1679,17 @@ interface IInternetProtocolEx : IInternetProtocol
[
in
]
HANDLE
*
dwReserved
)
;
}
cpp_quote
(
"#define CONFIRMSAFETYACTION_LOADOBJECT 0x00000001"
)
struct
CONFIRMSAFETY
{
CLSID
clsid
;
IUnknown
*
pUnk
;
DWORD
dwFlags
;
}
;
cpp_quote
(
"EXTERN_C const GUID GUID_CUSTOM_CONFIRMOBJECTSAFETY;"
)
cpp_quote
(
"DEFINE_GUID(CLSID_InternetSecurityManager, 0x7b8a2d94, 0x0ac9, 0x11d1, 0x89, 0x6c, 0x00, 0xc0, 0x4f, 0xB6, 0xbf, 0xc4);"
)
cpp_quote
(
"DEFINE_GUID(CLSID_InternetZoneManager, 0x7B8A2D95, 0x0AC9, 0x11D1, 0x89, 0x6C, 0x00, 0xC0, 0x4F, 0xB6, 0xBF, 0xC4);"
)
cpp_quote
(
"DEFINE_GUID(IID_IAsyncMoniker, 0x79EAC9D3, 0xBAF9, 0x11CE, 0x8C, 0x82, 0x00, 0xAA, 0x00, 0x4B, 0xA9, 0x0B);"
)
...
...
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