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
a95bfede
Commit
a95bfede
authored
Sep 19, 2007
by
Jacek Caban
Committed by
Alexandre Julliard
Sep 19, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Forward node ref calls to IHTMLDOMNode interface.
parent
4b2b441e
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
14 additions
and
46 deletions
+14
-46
htmlanchor.c
dlls/mshtml/htmlanchor.c
+2
-6
htmlbody.c
dlls/mshtml/htmlbody.c
+2
-6
htmlelem.c
dlls/mshtml/htmlelem.c
+2
-10
htmlinput.c
dlls/mshtml/htmlinput.c
+2
-6
htmlnode.c
dlls/mshtml/htmlnode.c
+2
-6
htmlselect.c
dlls/mshtml/htmlselect.c
+2
-6
htmltextarea.c
dlls/mshtml/htmltextarea.c
+2
-6
No files found.
dlls/mshtml/htmlanchor.c
View file @
a95bfede
...
@@ -80,18 +80,14 @@ static ULONG WINAPI HTMLAnchorElement_AddRef(IHTMLAnchorElement *iface)
...
@@ -80,18 +80,14 @@ static ULONG WINAPI HTMLAnchorElement_AddRef(IHTMLAnchorElement *iface)
{
{
HTMLAnchorElement
*
This
=
HTMLANCHOR_THIS
(
iface
);
HTMLAnchorElement
*
This
=
HTMLANCHOR_THIS
(
iface
);
TRACE
(
"(%p)
\n
"
,
This
);
return
IHTMLDOMNode_AddRef
(
HTMLDOMNODE
(
&
This
->
element
.
node
));
return
IHTMLDocument2_AddRef
(
HTMLDOC
(
This
->
element
.
node
.
doc
));
}
}
static
ULONG
WINAPI
HTMLAnchorElement_Release
(
IHTMLAnchorElement
*
iface
)
static
ULONG
WINAPI
HTMLAnchorElement_Release
(
IHTMLAnchorElement
*
iface
)
{
{
HTMLAnchorElement
*
This
=
HTMLANCHOR_THIS
(
iface
);
HTMLAnchorElement
*
This
=
HTMLANCHOR_THIS
(
iface
);
TRACE
(
"(%p)
\n
"
,
This
);
return
IHTMLDOMNode_Release
(
HTMLDOMNODE
(
&
This
->
element
.
node
));
return
IHTMLDocument2_Release
(
HTMLDOC
(
This
->
element
.
node
.
doc
));
}
}
static
HRESULT
WINAPI
HTMLAnchorElement_GetTypeInfoCount
(
IHTMLAnchorElement
*
iface
,
UINT
*
pctinfo
)
static
HRESULT
WINAPI
HTMLAnchorElement_GetTypeInfoCount
(
IHTMLAnchorElement
*
iface
,
UINT
*
pctinfo
)
...
...
dlls/mshtml/htmlbody.c
View file @
a95bfede
...
@@ -94,18 +94,14 @@ static ULONG WINAPI HTMLBodyElement_AddRef(IHTMLBodyElement *iface)
...
@@ -94,18 +94,14 @@ static ULONG WINAPI HTMLBodyElement_AddRef(IHTMLBodyElement *iface)
{
{
HTMLBodyElement
*
This
=
HTMLBODY_THIS
(
iface
);
HTMLBodyElement
*
This
=
HTMLBODY_THIS
(
iface
);
TRACE
(
"(%p)
\n
"
,
This
);
return
IHTMLDOMNode_AddRef
(
HTMLDOMNODE
(
&
This
->
textcont
.
element
.
node
));
return
IHTMLDocument2_AddRef
(
HTMLDOC
(
This
->
textcont
.
element
.
node
.
doc
));
}
}
static
ULONG
WINAPI
HTMLBodyElement_Release
(
IHTMLBodyElement
*
iface
)
static
ULONG
WINAPI
HTMLBodyElement_Release
(
IHTMLBodyElement
*
iface
)
{
{
HTMLBodyElement
*
This
=
HTMLBODY_THIS
(
iface
);
HTMLBodyElement
*
This
=
HTMLBODY_THIS
(
iface
);
TRACE
(
"(%p)
\n
"
,
This
);
return
IHTMLDOMNode_Release
(
HTMLDOMNODE
(
&
This
->
textcont
.
element
.
node
));
return
IHTMLDocument2_Release
(
HTMLDOC
(
This
->
textcont
.
element
.
node
.
doc
));
}
}
static
HRESULT
WINAPI
HTMLBodyElement_GetTypeInfoCount
(
IHTMLBodyElement
*
iface
,
UINT
*
pctinfo
)
static
HRESULT
WINAPI
HTMLBodyElement_GetTypeInfoCount
(
IHTMLBodyElement
*
iface
,
UINT
*
pctinfo
)
...
...
dlls/mshtml/htmlelem.c
View file @
a95bfede
...
@@ -80,22 +80,14 @@ static ULONG WINAPI HTMLElement_AddRef(IHTMLElement *iface)
...
@@ -80,22 +80,14 @@ static ULONG WINAPI HTMLElement_AddRef(IHTMLElement *iface)
{
{
HTMLElement
*
This
=
HTMLELEM_THIS
(
iface
);
HTMLElement
*
This
=
HTMLELEM_THIS
(
iface
);
if
(
This
->
impl
)
return
IHTMLDOMNode_AddRef
(
HTMLDOMNODE
(
&
This
->
node
));
return
IUnknown_AddRef
(
This
->
impl
);
TRACE
(
"(%p)
\n
"
,
This
);
return
IHTMLDocument2_AddRef
(
HTMLDOC
(
This
->
node
.
doc
));
}
}
static
ULONG
WINAPI
HTMLElement_Release
(
IHTMLElement
*
iface
)
static
ULONG
WINAPI
HTMLElement_Release
(
IHTMLElement
*
iface
)
{
{
HTMLElement
*
This
=
HTMLELEM_THIS
(
iface
);
HTMLElement
*
This
=
HTMLELEM_THIS
(
iface
);
if
(
This
->
impl
)
return
IHTMLDOMNode_Release
(
HTMLDOMNODE
(
&
This
->
node
));
return
IUnknown_Release
(
This
->
impl
);
TRACE
(
"(%p)
\n
"
,
This
);
return
IHTMLDocument2_Release
(
HTMLDOC
(
This
->
node
.
doc
));
}
}
static
HRESULT
WINAPI
HTMLElement_GetTypeInfoCount
(
IHTMLElement
*
iface
,
UINT
*
pctinfo
)
static
HRESULT
WINAPI
HTMLElement_GetTypeInfoCount
(
IHTMLElement
*
iface
,
UINT
*
pctinfo
)
...
...
dlls/mshtml/htmlinput.c
View file @
a95bfede
...
@@ -82,18 +82,14 @@ static ULONG WINAPI HTMLInputElement_AddRef(IHTMLInputElement *iface)
...
@@ -82,18 +82,14 @@ static ULONG WINAPI HTMLInputElement_AddRef(IHTMLInputElement *iface)
{
{
HTMLInputElement
*
This
=
HTMLINPUT_THIS
(
iface
);
HTMLInputElement
*
This
=
HTMLINPUT_THIS
(
iface
);
TRACE
(
"(%p)
\n
"
,
This
);
return
IHTMLDOMNode_AddRef
(
HTMLDOMNODE
(
&
This
->
element
.
node
));
return
IHTMLDocument2_AddRef
(
HTMLDOC
(
This
->
element
.
node
.
doc
));
}
}
static
ULONG
WINAPI
HTMLInputElement_Release
(
IHTMLInputElement
*
iface
)
static
ULONG
WINAPI
HTMLInputElement_Release
(
IHTMLInputElement
*
iface
)
{
{
HTMLInputElement
*
This
=
HTMLINPUT_THIS
(
iface
);
HTMLInputElement
*
This
=
HTMLINPUT_THIS
(
iface
);
TRACE
(
"(%p)
\n
"
,
This
);
return
IHTMLDOMNode_Release
(
HTMLDOMNODE
(
&
This
->
element
.
node
));
return
IHTMLDocument2_Release
(
HTMLDOC
(
This
->
element
.
node
.
doc
));
}
}
static
HRESULT
WINAPI
HTMLInputElement_GetTypeInfoCount
(
IHTMLInputElement
*
iface
,
UINT
*
pctinfo
)
static
HRESULT
WINAPI
HTMLInputElement_GetTypeInfoCount
(
IHTMLInputElement
*
iface
,
UINT
*
pctinfo
)
...
...
dlls/mshtml/htmlnode.c
View file @
a95bfede
...
@@ -59,10 +59,8 @@ static ULONG WINAPI HTMLDOMNode_AddRef(IHTMLDOMNode *iface)
...
@@ -59,10 +59,8 @@ static ULONG WINAPI HTMLDOMNode_AddRef(IHTMLDOMNode *iface)
{
{
HTMLDOMNode
*
This
=
HTMLDOMNODE_THIS
(
iface
);
HTMLDOMNode
*
This
=
HTMLDOMNODE_THIS
(
iface
);
if
(
This
->
impl
.
unk
)
return
IUnknown_AddRef
(
This
->
impl
.
unk
);
TRACE
(
"(%p)
\n
"
,
This
);
TRACE
(
"(%p)
\n
"
,
This
);
return
IHTMLDocument2_AddRef
(
HTMLDOC
(
This
->
doc
));
return
IHTMLDocument2_AddRef
(
HTMLDOC
(
This
->
doc
));
}
}
...
@@ -70,10 +68,8 @@ static ULONG WINAPI HTMLDOMNode_Release(IHTMLDOMNode *iface)
...
@@ -70,10 +68,8 @@ static ULONG WINAPI HTMLDOMNode_Release(IHTMLDOMNode *iface)
{
{
HTMLDOMNode
*
This
=
HTMLDOMNODE_THIS
(
iface
);
HTMLDOMNode
*
This
=
HTMLDOMNODE_THIS
(
iface
);
if
(
This
->
impl
.
unk
)
return
IUnknown_Release
(
This
->
impl
.
unk
);
TRACE
(
"(%p)
\n
"
,
This
);
TRACE
(
"(%p)
\n
"
,
This
);
return
IHTMLDocument2_Release
(
HTMLDOC
(
This
->
doc
));
return
IHTMLDocument2_Release
(
HTMLDOC
(
This
->
doc
));
}
}
...
...
dlls/mshtml/htmlselect.c
View file @
a95bfede
...
@@ -82,18 +82,14 @@ static ULONG WINAPI HTMLSelectElement_AddRef(IHTMLSelectElement *iface)
...
@@ -82,18 +82,14 @@ static ULONG WINAPI HTMLSelectElement_AddRef(IHTMLSelectElement *iface)
{
{
HTMLSelectElement
*
This
=
HTMLSELECT_THIS
(
iface
);
HTMLSelectElement
*
This
=
HTMLSELECT_THIS
(
iface
);
TRACE
(
"(%p)
\n
"
,
This
);
return
IHTMLDOMNode_AddRef
(
HTMLDOMNODE
(
&
This
->
element
.
node
));
return
IHTMLDocument2_AddRef
(
HTMLDOC
(
This
->
element
.
node
.
doc
));
}
}
static
ULONG
WINAPI
HTMLSelectElement_Release
(
IHTMLSelectElement
*
iface
)
static
ULONG
WINAPI
HTMLSelectElement_Release
(
IHTMLSelectElement
*
iface
)
{
{
HTMLSelectElement
*
This
=
HTMLSELECT_THIS
(
iface
);
HTMLSelectElement
*
This
=
HTMLSELECT_THIS
(
iface
);
TRACE
(
"(%p)
\n
"
,
This
);
return
IHTMLDOMNode_Release
(
HTMLDOMNODE
(
&
This
->
element
.
node
));
return
IHTMLDocument2_Release
(
HTMLDOC
(
This
->
element
.
node
.
doc
));
}
}
static
HRESULT
WINAPI
HTMLSelectElement_GetTypeInfoCount
(
IHTMLSelectElement
*
iface
,
UINT
*
pctinfo
)
static
HRESULT
WINAPI
HTMLSelectElement_GetTypeInfoCount
(
IHTMLSelectElement
*
iface
,
UINT
*
pctinfo
)
...
...
dlls/mshtml/htmltextarea.c
View file @
a95bfede
...
@@ -82,18 +82,14 @@ static ULONG WINAPI HTMLTextAreaElement_AddRef(IHTMLTextAreaElement *iface)
...
@@ -82,18 +82,14 @@ static ULONG WINAPI HTMLTextAreaElement_AddRef(IHTMLTextAreaElement *iface)
{
{
HTMLTextAreaElement
*
This
=
HTMLTXTAREA_THIS
(
iface
);
HTMLTextAreaElement
*
This
=
HTMLTXTAREA_THIS
(
iface
);
TRACE
(
"(%p)
\n
"
,
This
);
return
IHTMLDOMNode_AddRef
(
HTMLDOMNODE
(
&
This
->
element
.
node
));
return
IHTMLDocument2_AddRef
(
HTMLDOC
(
This
->
element
.
node
.
doc
));
}
}
static
ULONG
WINAPI
HTMLTextAreaElement_Release
(
IHTMLTextAreaElement
*
iface
)
static
ULONG
WINAPI
HTMLTextAreaElement_Release
(
IHTMLTextAreaElement
*
iface
)
{
{
HTMLTextAreaElement
*
This
=
HTMLTXTAREA_THIS
(
iface
);
HTMLTextAreaElement
*
This
=
HTMLTXTAREA_THIS
(
iface
);
TRACE
(
"(%p)
\n
"
,
This
);
return
IHTMLDOMNode_Release
(
HTMLDOMNODE
(
&
This
->
element
.
node
));
return
IHTMLDocument2_Release
(
HTMLDOC
(
This
->
element
.
node
.
doc
));
}
}
static
HRESULT
WINAPI
HTMLTextAreaElement_GetTypeInfoCount
(
IHTMLTextAreaElement
*
iface
,
UINT
*
pctinfo
)
static
HRESULT
WINAPI
HTMLTextAreaElement_GetTypeInfoCount
(
IHTMLTextAreaElement
*
iface
,
UINT
*
pctinfo
)
...
...
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