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
e9832a06
Commit
e9832a06
authored
Dec 02, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Make some functions static.
parent
7d4bc850
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
8 deletions
+7
-8
dispex.c
dlls/mshtml/dispex.c
+1
-1
htmlcomment.c
dlls/mshtml/htmlcomment.c
+2
-2
htmlstyle.c
dlls/mshtml/htmlstyle.c
+2
-2
htmltextnode.c
dlls/mshtml/htmltextnode.c
+2
-2
mshtml_private.h
dlls/mshtml/mshtml_private.h
+0
-1
No files found.
dlls/mshtml/dispex.c
View file @
e9832a06
...
...
@@ -119,7 +119,7 @@ static REFIID tid_ids[] = {
&
IID_IOmNavigator
};
HRESULT
get_typeinfo
(
tid_t
tid
,
ITypeInfo
**
typeinfo
)
static
HRESULT
get_typeinfo
(
tid_t
tid
,
ITypeInfo
**
typeinfo
)
{
HRESULT
hres
;
...
...
dlls/mshtml/htmlcomment.c
View file @
e9832a06
...
...
@@ -139,7 +139,7 @@ static const IHTMLCommentElementVtbl HTMLCommentElementVtbl = {
#define HTMLCOMMENT_NODE_THIS(iface) DEFINE_THIS2(HTMLCommentElement, element.node, iface)
HRESULT
HTMLCommentElement_QI
(
HTMLDOMNode
*
iface
,
REFIID
riid
,
void
**
ppv
)
static
HRESULT
HTMLCommentElement_QI
(
HTMLDOMNode
*
iface
,
REFIID
riid
,
void
**
ppv
)
{
HTMLCommentElement
*
This
=
HTMLCOMMENT_NODE_THIS
(
iface
);
...
...
@@ -156,7 +156,7 @@ HRESULT HTMLCommentElement_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
return
S_OK
;
}
void
HTMLCommentElement_destructor
(
HTMLDOMNode
*
iface
)
static
void
HTMLCommentElement_destructor
(
HTMLDOMNode
*
iface
)
{
HTMLCommentElement
*
This
=
HTMLCOMMENT_NODE_THIS
(
iface
);
...
...
dlls/mshtml/htmlstyle.c
View file @
e9832a06
...
...
@@ -281,7 +281,7 @@ HRESULT get_nsstyle_attr(nsIDOMCSSStyleDeclaration *nsstyle, styleid_t sid, BSTR
return
S_OK
;
}
HRESULT
get_nsstyle_attr_var
(
nsIDOMCSSStyleDeclaration
*
nsstyle
,
styleid_t
sid
,
VARIANT
*
p
,
DWORD
flags
)
static
HRESULT
get_nsstyle_attr_var
(
nsIDOMCSSStyleDeclaration
*
nsstyle
,
styleid_t
sid
,
VARIANT
*
p
,
DWORD
flags
)
{
nsAString
str_value
;
const
PRUnichar
*
value
;
...
...
@@ -366,7 +366,7 @@ static inline HRESULT set_style_pos(HTMLStyle *This, styleid_t sid, float value)
return
set_style_attr
(
This
,
sid
,
szValue
,
0
);
}
HRESULT
get_nsstyle_pos
(
HTMLStyle
*
This
,
styleid_t
sid
,
float
*
p
)
static
HRESULT
get_nsstyle_pos
(
HTMLStyle
*
This
,
styleid_t
sid
,
float
*
p
)
{
nsAString
str_value
;
HRESULT
hres
;
...
...
dlls/mshtml/htmltextnode.c
View file @
e9832a06
...
...
@@ -149,7 +149,7 @@ static const IHTMLDOMTextNodeVtbl HTMLDOMTextNodeVtbl = {
#define HTMLTEXT_NODE_THIS(iface) DEFINE_THIS2(HTMLDOMTextNode, node, iface)
HRESULT
HTMLDOMTextNode_QI
(
HTMLDOMNode
*
iface
,
REFIID
riid
,
void
**
ppv
)
static
HRESULT
HTMLDOMTextNode_QI
(
HTMLDOMNode
*
iface
,
REFIID
riid
,
void
**
ppv
)
{
HTMLDOMTextNode
*
This
=
HTMLTEXT_NODE_THIS
(
iface
);
...
...
@@ -166,7 +166,7 @@ HRESULT HTMLDOMTextNode_QI(HTMLDOMNode *iface, REFIID riid, void **ppv)
return
S_OK
;
}
void
HTMLDOMTextNode_destructor
(
HTMLDOMNode
*
iface
)
static
void
HTMLDOMTextNode_destructor
(
HTMLDOMNode
*
iface
)
{
HTMLDOMTextNode
*
This
=
HTMLTEXT_NODE_THIS
(
iface
);
...
...
dlls/mshtml/mshtml_private.h
View file @
e9832a06
...
...
@@ -655,7 +655,6 @@ void remove_doc_tasks(const HTMLDocument*);
DWORD
set_task_timer
(
HTMLDocument
*
,
DWORD
,
BOOL
,
IDispatch
*
);
HRESULT
clear_task_timer
(
HTMLDocument
*
,
BOOL
,
DWORD
);
HRESULT
get_typeinfo
(
tid_t
,
ITypeInfo
**
);
void
release_typelib
(
void
);
void
call_disp_func
(
HTMLDocument
*
,
IDispatch
*
,
IDispatch
*
);
...
...
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