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
6d19a37c
Commit
6d19a37c
authored
Mar 30, 2005
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 30, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added IMonikerProp and IInternetPriority interfaces.
parent
e78fab2b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
4 deletions
+44
-4
urlmon.idl
include/urlmon.idl
+44
-4
No files found.
include/urlmon.idl
View file @
6d19a37c
...
...
@@ -441,13 +441,35 @@ interface IPersistMoniker : IUnknown
}
/*****************************************************************************
*
IMonikerProp
interface
*/
[
object
,
uuid
(
A5CA5F7F
-
1847
-
4
D87
-
9
C5B
-
918509
F7511D
),
pointer_default
(
unique
)
]
interface
IMonikerProp
:
IUnknown
{
typedef
[
unique
]
IMonikerProp
*
LPMONIKERPROP
;
typedef
enum
{
MIMETYPEPROP
=
0
x00000000
,
USE_SRC_URL
=
0
x00000001
}
MONIKERPROPERTY
;
HRESULT
PutProperty
(
[
in
]
MONIKERPROPERTY
mkp
,
[
in
]
LPCWSTR
val
)
;
}
/*****************************************************************************
*
IInternetBindInfo
interface
*/
[
local
,
object
,
uuid
(
79
EAC9E1
-
BAF9
-
11
CE
-
8
C82
-
00
AA004BA90B
),
pointer_default
(
unique
)
local
,
object
,
uuid
(
79
EAC9E1
-
BAF9
-
11
CE
-
8
C82
-
00
AA004BA90B
),
pointer_default
(
unique
)
]
interface
IInternetBindInfo
:
IUnknown
{
...
...
@@ -483,6 +505,23 @@ interface IInternetBindInfo : IUnknown
}
/*****************************************************************************
*
IInternetPriority
interface
*/
[
local
,
object
,
uuid
(
79
EAC9EB
-
BAF9
-
11
CE
-
8
C82
-
00
AA004BA90B
),
pointer_default
(
unique
)
]
interface
IInternetPriority
:
IUnknown
{
typedef
[
unique
]
IInternetPriority
*
LPIINTERNETPRIORITY
;
HRESULT
SetPriority
(
[
in
]
LONG
nPriority
)
;
HRESULT
GetPriority
(
[
out
]
LONG
*
pnPriority
)
;
}
/*****************************************************************************
*
IInternetProtocolRoot
interface
*/
[
...
...
@@ -998,6 +1037,7 @@ cpp_quote("#define INET_E_UNKNOWN_PROTOCOL 0x800C000DL")
cpp_quote
(
"#define INET_E_SECURITY_PROBLEM 0x800C000EL"
)
cpp_quote
(
"#define INET_E_CANNOT_LOAD_DATA 0x800C000FL"
)
cpp_quote
(
"#define INET_E_CANNOT_INSTANTIATE_OBJECT 0x800C0010L"
)
cpp_quote
(
"#define INET_E_USE_DEFAULT_PROTOCOLHANDLER 0x800C0011L"
)
cpp_quote
(
"#define INET_E_QUERYOPTION_UNKNOWN 0x800C0013L"
)
cpp_quote
(
"#define INET_E_REDIRECT_FAILED 0x800C0014L"
)
cpp_quote
(
"#define INET_E_REDIRECT_TO_DIR 0x800C0015L"
)
...
...
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