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
b6259956
Commit
b6259956
authored
Jul 02, 2009
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 03, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Use GetBinfInfoEx in GetBindInfo implementation if possible.
parent
288eefc7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
bindctx.c
dlls/urlmon/bindctx.c
+13
-1
No files found.
dlls/urlmon/bindctx.c
View file @
b6259956
...
...
@@ -178,10 +178,22 @@ static HRESULT WINAPI BindStatusCallback_GetBindInfo(IBindStatusCallback *iface,
DWORD
*
grfBINDF
,
BINDINFO
*
pbindinfo
)
{
BindStatusCallback
*
This
=
STATUSCLB_THIS
(
iface
);
IBindStatusCallbackEx
*
bscex
;
HRESULT
hres
;
TRACE
(
"(%p)->(%p %p)
\n
"
,
This
,
grfBINDF
,
pbindinfo
);
return
IBindStatusCallback_GetBindInfo
(
This
->
callback
,
grfBINDF
,
pbindinfo
);
hres
=
IBindStatusCallback_QueryInterface
(
This
->
callback
,
&
IID_IBindStatusCallbackEx
,
(
void
**
)
&
bscex
);
if
(
SUCCEEDED
(
hres
))
{
DWORD
bindf2
=
0
,
reserv
=
0
;
hres
=
IBindStatusCallbackEx_GetBindInfoEx
(
bscex
,
grfBINDF
,
pbindinfo
,
&
bindf2
,
&
reserv
);
IBindStatusCallbackEx_Release
(
bscex
);
}
else
{
hres
=
IBindStatusCallback_GetBindInfo
(
This
->
callback
,
grfBINDF
,
pbindinfo
);
}
return
hres
;
}
static
HRESULT
WINAPI
BindStatusCallback_OnDataAvailable
(
IBindStatusCallback
*
iface
,
...
...
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