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
47301026
Commit
47301026
authored
Mar 13, 2008
by
Jared Lapsley
Committed by
Alexandre Julliard
Mar 15, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shdocvw: WebBrowser_get_Busy implementation.
parent
fd69abab
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
2 deletions
+9
-2
dochost.c
dlls/shdocvw/dochost.c
+1
-0
navigate.c
dlls/shdocvw/navigate.c
+2
-0
shdocvw.h
dlls/shdocvw/shdocvw.h
+1
-0
webbrowser.c
dlls/shdocvw/webbrowser.c
+5
-2
No files found.
dlls/shdocvw/dochost.c
View file @
47301026
...
...
@@ -78,6 +78,7 @@ static void navigate_complete(DocHost *This)
SysFreeString
(
V_BSTR
(
&
url
));
if
(
disp
)
IDispatch_Release
(
disp
);
This
->
busy
=
VARIANT_FALSE
;
}
void
object_available
(
DocHost
*
This
)
...
...
dlls/shdocvw/navigate.c
View file @
47301026
...
...
@@ -427,6 +427,8 @@ static void on_before_navigate2(DocHost *This, LPCWSTR url, const BYTE *post_dat
dispparams
.
rgdispidNamedArgs
=
NULL
;
dispparams
.
rgvarg
=
params
;
This
->
busy
=
VARIANT_TRUE
;
V_VT
(
params
)
=
VT_BOOL
|
VT_BYREF
;
V_BOOLREF
(
params
)
=
cancel
;
...
...
dlls/shdocvw/shdocvw.h
View file @
47301026
...
...
@@ -99,6 +99,7 @@ struct DocHost {
VARIANT_BOOL
silent
;
VARIANT_BOOL
offline
;
VARIANT_BOOL
busy
;
ConnectionPointContainer
cps
;
};
...
...
dlls/shdocvw/webbrowser.c
View file @
47301026
...
...
@@ -462,8 +462,11 @@ static HRESULT WINAPI WebBrowser_get_LocationURL(IWebBrowser2 *iface, BSTR *Loca
static
HRESULT
WINAPI
WebBrowser_get_Busy
(
IWebBrowser2
*
iface
,
VARIANT_BOOL
*
pBool
)
{
WebBrowser
*
This
=
WEBBROWSER_THIS
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
pBool
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
pBool
);
*
pBool
=
This
->
doc_host
.
busy
;
return
S_OK
;
}
static
HRESULT
WINAPI
WebBrowser_Quit
(
IWebBrowser2
*
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