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
57f7a2c1
Commit
57f7a2c1
authored
May 07, 2004
by
Kevin Koltzau
Committed by
Alexandre Julliard
May 07, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented IsAsyncMoniker.
parent
80422fb8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
umon.c
dlls/urlmon/umon.c
+9
-1
urlmon.h
include/urlmon.h
+1
-0
urlmon.idl
include/urlmon.idl
+1
-0
No files found.
dlls/urlmon/umon.c
View file @
57f7a2c1
...
...
@@ -1135,7 +1135,15 @@ HRESULT WINAPI FindMimeFromData(LPBC pBC, LPCWSTR pwzUrl, LPVOID pBuffer,
*/
HRESULT
WINAPI
IsAsyncMoniker
(
IMoniker
*
pmk
)
{
FIXME
(
"stub
\n
"
);
IUnknown
*
am
;
TRACE
(
"(%p)
\n
"
,
pmk
);
if
(
!
pmk
)
return
E_INVALIDARG
;
if
(
SUCCEEDED
(
IMoniker_QueryInterface
(
pmk
,
&
IID_IAsyncMoniker
,
(
void
**
)
&
am
)))
{
IUnknown_Release
(
am
);
return
S_OK
;
}
return
S_FALSE
;
}
...
...
include/urlmon.h
View file @
57f7a2c1
...
...
@@ -1359,6 +1359,7 @@ void __RPC_STUB IInternetProtocolInfo_QueryInfo_Stub(
#endif
/* __IInternetProtocolInfo_INTERFACE_DEFINED__ */
DEFINE_GUID
(
IID_IAsyncMoniker
,
0x79EAC9D3
,
0xBAF9
,
0x11CE
,
0x8C
,
0x82
,
0x00
,
0xAA
,
0x00
,
0x4B
,
0xA9
,
0x0B
);
DEFINE_GUID
(
CLSID_StdURLMoniker
,
0x79EAC9E0
,
0xBAF9
,
0x11CE
,
0x8C
,
0x82
,
0x00
,
0xAA
,
0x00
,
0x4B
,
0xA9
,
0x0B
);
#define MK_S_ASYNCHRONOUS 0x000401E8
#define S_ASYNCHRONOUS MK_S_ASYNCHRONOUS
...
...
include/urlmon.idl
View file @
57f7a2c1
...
...
@@ -508,6 +508,7 @@ interface IInternetProtocolInfo : IUnknown
[
in
]
DWORD
dwReserved
)
;
}
cpp_quote
(
"DEFINE_GUID(IID_IAsyncMoniker, 0x79EAC9D3, 0xBAF9, 0x11CE, 0x8C, 0x82, 0x00, 0xAA, 0x00, 0x4B, 0xA9, 0x0B);"
)
cpp_quote
(
"DEFINE_GUID(CLSID_StdURLMoniker, 0x79EAC9E0, 0xBAF9, 0x11CE, 0x8C, 0x82, 0x00, 0xAA, 0x00, 0x4B, 0xA9, 0x0B);"
)
cpp_quote
(
"#define MK_S_ASYNCHRONOUS 0x000401E8"
)
...
...
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