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
3b26d50d
Commit
3b26d50d
authored
Jan 08, 2009
by
Andrew Talbot
Committed by
Alexandre Julliard
Jan 09, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Declare a function static.
parent
7a326f94
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
htmlelemcol.c
dlls/mshtml/htmlelemcol.c
+4
-1
mshtml_private.h
dlls/mshtml/mshtml_private.h
+0
-1
No files found.
dlls/mshtml/htmlelemcol.c
View file @
3b26d50d
...
...
@@ -50,6 +50,9 @@ typedef struct {
DWORD
size
;
}
elem_vector_t
;
static
IHTMLElementCollection
*
HTMLElementCollection_Create
(
IUnknown
*
ref_unk
,
HTMLElement
**
elems
,
DWORD
len
);
static
void
elem_vector_add
(
elem_vector_t
*
buf
,
HTMLElement
*
elem
)
{
if
(
buf
->
len
==
buf
->
size
)
{
...
...
@@ -534,7 +537,7 @@ IHTMLElementCollection *create_collection_from_htmlcol(HTMLDocument *doc, IUnkno
return
HTMLElementCollection_Create
(
unk
,
buf
.
buf
,
buf
.
len
);
}
IHTMLElementCollection
*
HTMLElementCollection_Create
(
IUnknown
*
ref_unk
,
static
IHTMLElementCollection
*
HTMLElementCollection_Create
(
IUnknown
*
ref_unk
,
HTMLElement
**
elems
,
DWORD
len
)
{
HTMLElementCollection
*
ret
=
heap_alloc_zero
(
sizeof
(
HTMLElementCollection
));
...
...
dlls/mshtml/mshtml_private.h
View file @
3b26d50d
...
...
@@ -614,7 +614,6 @@ void doc_insert_script(HTMLDocument*,nsIDOMHTMLScriptElement*);
IDispatch
*
script_parse_event
(
HTMLDocument
*
,
LPCWSTR
);
void
set_script_mode
(
HTMLDocument
*
,
SCRIPTMODE
);
IHTMLElementCollection
*
HTMLElementCollection_Create
(
IUnknown
*
,
HTMLElement
**
,
DWORD
);
IHTMLElementCollection
*
create_all_collection
(
HTMLDOMNode
*
,
BOOL
);
IHTMLElementCollection
*
create_collection_from_nodelist
(
HTMLDocument
*
,
IUnknown
*
,
nsIDOMNodeList
*
);
IHTMLElementCollection
*
create_collection_from_htmlcol
(
HTMLDocument
*
,
IUnknown
*
,
nsIDOMHTMLCollection
*
);
...
...
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