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
12b36ecb
Commit
12b36ecb
authored
Dec 13, 2003
by
Kirill Smelkov
Committed by
Alexandre Julliard
Dec 13, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added CreateAsyncBindCtx and IsAsyncMoniker stubs.
parent
6ba2226f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
2 deletions
+24
-2
umon.c
dlls/urlmon/umon.c
+18
-0
urlmon.spec
dlls/urlmon/urlmon.spec
+2
-2
urlmon.h
include/urlmon.h
+2
-0
urlmon.idl
include/urlmon.idl
+2
-0
No files found.
dlls/urlmon/umon.c
View file @
12b36ecb
...
...
@@ -803,6 +803,15 @@ static HRESULT WINAPI URLMonikerImpl_IBinding_Suspend(IBinding* iface)
}
/***********************************************************************
* CreateAsyncBindCtx (URLMON.@)
*/
HRESULT
WINAPI
CreateAsyncBindCtx
(
DWORD
reserved
,
IBindStatusCallback
*
callback
,
IEnumFORMATETC
*
format
,
IBindCtx
**
pbind
)
{
FIXME
(
"stub.
\n
"
);
return
E_INVALIDARG
;
}
/***********************************************************************
* CreateAsyncBindCtxEx (URLMON.@)
*
* Create an asynchronous bind context.
...
...
@@ -924,6 +933,15 @@ HRESULT WINAPI FindMimeFromData(LPBC pBC, LPCWSTR pwzUrl, LPVOID pBuffer,
}
/***********************************************************************
* IsAsyncMoniker (URLMON.@)
*/
HRESULT
WINAPI
IsAsyncMoniker
(
IMoniker
*
pmk
)
{
FIXME
(
"stub
\n
"
);
return
S_FALSE
;
}
/***********************************************************************
* RegisterBindStatusCallback (URLMON.@)
*
* Register a bind status callback.
...
...
dlls/urlmon/urlmon.spec
View file @
12b36ecb
...
...
@@ -17,7 +17,7 @@
@ stub CompareSecurityIds
@ stub CopyBindInfo
@ stub CopyStgMedium
@ st
ub CreateAsyncBindCtx
@ st
dcall CreateAsyncBindCtx(long ptr ptr ptr)
@ stdcall CreateAsyncBindCtxEx(ptr long ptr ptr ptr long)
@ stub CreateFormatEnumerator
@ stdcall CreateURLMoniker(ptr wstr ptr)
...
...
@@ -43,7 +43,7 @@
@ stub HlinkNavigateString
@ stub HlinkSimpleNavigateToMoniker
@ stub HlinkSimpleNavigateToString
@ st
ub IsAsyncMoniker
@ st
dcall IsAsyncMoniker(ptr)
@ stub IsLoggingEnabledA
@ stub IsLoggingEnabledW
@ stub IsValidURL
...
...
include/urlmon.h
View file @
12b36ecb
...
...
@@ -1387,6 +1387,8 @@ HRESULT WINAPI RegisterBindStatusCallback(IBindCtx *pbc, IBindStatusCallback *pb
HRESULT
WINAPI
CompareSecurityIds
(
BYTE
*
,
DWORD
,
BYTE
*
,
DWORD
,
DWORD
);
HRESULT
WINAPI
URLDownloadToFileA
(
LPUNKNOWN
pCaller
,
LPCSTR
szURL
,
LPCSTR
szFileName
,
DWORD
dwReserved
,
LPBINDSTATUSCALLBACK
lpfnCB
);
HRESULT
WINAPI
URLDownloadToFileW
(
LPUNKNOWN
pCaller
,
LPCWSTR
szURL
,
LPCWSTR
szFileName
,
DWORD
dwReserved
,
LPBINDSTATUSCALLBACK
lpfnCB
);
HRESULT
WINAPI
IsAsyncMoniker
(
IMoniker
*
pmk
);
HRESULT
WINAPI
CreateAsyncBindCtx
(
DWORD
,
IBindStatusCallback
*
,
IEnumFORMATETC
*
,
IBindCtx
**
);
#ifdef __cplusplus
}
#endif
...
...
include/urlmon.idl
View file @
12b36ecb
...
...
@@ -539,3 +539,5 @@ cpp_quote("HRESULT WINAPI RegisterBindStatusCallback(IBindCtx *pbc, IBindStatusC
cpp_quote
(
"HRESULT WINAPI CompareSecurityIds(BYTE*,DWORD,BYTE*,DWORD,DWORD);"
)
cpp_quote
(
"HRESULT WINAPI URLDownloadToFileA(LPUNKNOWN pCaller, LPCSTR szURL, LPCSTR szFileName, DWORD dwReserved, LPBINDSTATUSCALLBACK lpfnCB);"
)
cpp_quote
(
"HRESULT WINAPI URLDownloadToFileW(LPUNKNOWN pCaller, LPCWSTR szURL, LPCWSTR szFileName, DWORD dwReserved, LPBINDSTATUSCALLBACK lpfnCB);"
)
cpp_quote
(
"HRESULT WINAPI IsAsyncMoniker(IMoniker* pmk);"
)
cpp_quote
(
"HRESULT WINAPI CreateAsyncBindCtx(DWORD, IBindStatusCallback*, IEnumFORMATETC*, IBindCtx**);"
)
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