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
17e193e1
Commit
17e193e1
authored
Jul 16, 2006
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 17, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added get_all implementation.
parent
7e184e15
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
2 deletions
+20
-2
htmldoc.c
dlls/mshtml/htmldoc.c
+20
-2
No files found.
dlls/mshtml/htmldoc.c
View file @
17e193e1
...
...
@@ -209,8 +209,26 @@ static HRESULT WINAPI HTMLDocument_get_Script(IHTMLDocument2 *iface, IDispatch *
static
HRESULT
WINAPI
HTMLDocument_get_all
(
IHTMLDocument2
*
iface
,
IHTMLElementCollection
**
p
)
{
FIXME
(
"(%p)->(%p)
\n
"
,
iface
,
p
);
return
E_NOTIMPL
;
HTMLDocument
*
This
=
HTMLDOC_THIS
(
iface
);
IHTMLElement
*
doc
;
IDispatch
*
disp
;
HRESULT
hres
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
hres
=
IHTMLDocument3_get_documentElement
(
HTMLDOC3
(
This
),
&
doc
);
if
(
FAILED
(
hres
))
return
hres
;
hres
=
IHTMLElement_get_all
(
doc
,
&
disp
);
IHTMLElement_Release
(
doc
);
if
(
FAILED
(
hres
))
return
hres
;
hres
=
IDispatch_QueryInterface
(
disp
,
&
IID_IHTMLElementCollection
,
(
void
**
)
p
);
IDispatch_Release
(
disp
);
return
hres
;
}
static
HRESULT
WINAPI
HTMLDocument_get_body
(
IHTMLDocument2
*
iface
,
IHTMLElement
**
p
)
...
...
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