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
ec800242
Commit
ec800242
authored
Jan 05, 2015
by
Francois Gouget
Committed by
Alexandre Julliard
Jan 05, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Make create_document_fragment() static.
parent
169923d4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
htmldoc.c
dlls/mshtml/htmldoc.c
+3
-1
mshtml_private.h
dlls/mshtml/mshtml_private.h
+0
-1
No files found.
dlls/mshtml/htmldoc.c
View file @
ec800242
...
...
@@ -42,6 +42,8 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
mshtml
);
static
HRESULT
create_document_fragment
(
nsIDOMNode
*
nsnode
,
HTMLDocumentNode
*
doc_node
,
HTMLDocumentNode
**
ret
);
HRESULT
get_doc_elem_by_id
(
HTMLDocumentNode
*
doc
,
const
WCHAR
*
id
,
HTMLElement
**
ret
)
{
nsIDOMNodeList
*
nsnode_list
;
...
...
@@ -4652,7 +4654,7 @@ HRESULT create_doc_from_nsdoc(nsIDOMHTMLDocument *nsdoc, HTMLDocumentObj *doc_ob
return
S_OK
;
}
HRESULT
create_document_fragment
(
nsIDOMNode
*
nsnode
,
HTMLDocumentNode
*
doc_node
,
HTMLDocumentNode
**
ret
)
static
HRESULT
create_document_fragment
(
nsIDOMNode
*
nsnode
,
HTMLDocumentNode
*
doc_node
,
HTMLDocumentNode
**
ret
)
{
HTMLDocumentNode
*
doc_frag
;
...
...
dlls/mshtml/mshtml_private.h
View file @
ec800242
...
...
@@ -759,7 +759,6 @@ struct HTMLDocumentNode {
HRESULT
HTMLDocument_Create
(
IUnknown
*
,
REFIID
,
void
**
)
DECLSPEC_HIDDEN
;
HRESULT
HTMLLoadOptions_Create
(
IUnknown
*
,
REFIID
,
void
**
)
DECLSPEC_HIDDEN
;
HRESULT
create_doc_from_nsdoc
(
nsIDOMHTMLDocument
*
,
HTMLDocumentObj
*
,
HTMLInnerWindow
*
,
HTMLDocumentNode
**
)
DECLSPEC_HIDDEN
;
HRESULT
create_document_fragment
(
nsIDOMNode
*
,
HTMLDocumentNode
*
,
HTMLDocumentNode
**
)
DECLSPEC_HIDDEN
;
HRESULT
HTMLOuterWindow_Create
(
HTMLDocumentObj
*
,
nsIDOMWindow
*
,
HTMLOuterWindow
*
,
HTMLOuterWindow
**
)
DECLSPEC_HIDDEN
;
HRESULT
update_window_doc
(
HTMLInnerWindow
*
)
DECLSPEC_HIDDEN
;
...
...
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