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
3f9c7066
Commit
3f9c7066
authored
Mar 28, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 28, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Improved VARIANT debug traces in htmlelem.c.
parent
6e3d322c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
19 deletions
+19
-19
htmlelem.c
dlls/mshtml/htmlelem.c
+19
-19
No files found.
dlls/mshtml/htmlelem.c
View file @
3f9c7066
...
...
@@ -523,7 +523,7 @@ static HRESULT WINAPI HTMLElement_get_style(IHTMLElement *iface, IHTMLStyle **p)
static
HRESULT
WINAPI
HTMLElement_put_onhelp
(
IHTMLElement
*
iface
,
VARIANT
v
)
{
HTMLElement
*
This
=
impl_from_IHTMLElement
(
iface
);
FIXME
(
"(%p)->(
)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -538,7 +538,7 @@ static HRESULT WINAPI HTMLElement_put_onclick(IHTMLElement *iface, VARIANT v)
{
HTMLElement
*
This
=
impl_from_IHTMLElement
(
iface
);
TRACE
(
"(%p)->(
)
\n
"
,
This
);
TRACE
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
set_node_event
(
&
This
->
node
,
EVENTID_CLICK
,
&
v
);
}
...
...
@@ -592,7 +592,7 @@ static HRESULT WINAPI HTMLElement_put_onkeyup(IHTMLElement *iface, VARIANT v)
{
HTMLElement
*
This
=
impl_from_IHTMLElement
(
iface
);
TRACE
(
"(%p)->(
)
\n
"
,
This
);
TRACE
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
set_node_event
(
&
This
->
node
,
EVENTID_KEYUP
,
&
v
);
}
...
...
@@ -607,7 +607,7 @@ static HRESULT WINAPI HTMLElement_get_onkeyup(IHTMLElement *iface, VARIANT *p)
static
HRESULT
WINAPI
HTMLElement_put_onkeypress
(
IHTMLElement
*
iface
,
VARIANT
v
)
{
HTMLElement
*
This
=
impl_from_IHTMLElement
(
iface
);
FIXME
(
"(%p)->(
)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -640,7 +640,7 @@ static HRESULT WINAPI HTMLElement_put_onmouseover(IHTMLElement *iface, VARIANT v
{
HTMLElement
*
This
=
impl_from_IHTMLElement
(
iface
);
TRACE
(
"(%p)->(
)
\n
"
,
This
);
TRACE
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
set_node_event
(
&
This
->
node
,
EVENTID_MOUSEOVER
,
&
v
);
}
...
...
@@ -658,7 +658,7 @@ static HRESULT WINAPI HTMLElement_put_onmousemove(IHTMLElement *iface, VARIANT v
{
HTMLElement
*
This
=
impl_from_IHTMLElement
(
iface
);
TRACE
(
"(%p)->(
)
\n
"
,
This
);
TRACE
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
set_node_event
(
&
This
->
node
,
EVENTID_MOUSEMOVE
,
&
v
);
}
...
...
@@ -676,7 +676,7 @@ static HRESULT WINAPI HTMLElement_put_onmousedown(IHTMLElement *iface, VARIANT v
{
HTMLElement
*
This
=
impl_from_IHTMLElement
(
iface
);
TRACE
(
"(%p)->(
)
\n
"
,
This
);
TRACE
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
set_node_event
(
&
This
->
node
,
EVENTID_MOUSEDOWN
,
&
v
);
}
...
...
@@ -833,7 +833,7 @@ static HRESULT WINAPI HTMLElement_get_onselectstart(IHTMLElement *iface, VARIANT
static
HRESULT
WINAPI
HTMLElement_scrollIntoView
(
IHTMLElement
*
iface
,
VARIANT
varargStart
)
{
HTMLElement
*
This
=
impl_from_IHTMLElement
(
iface
);
FIXME
(
"(%p)->(
)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
varargStart
)
);
return
E_NOTIMPL
;
}
...
...
@@ -1323,7 +1323,7 @@ static HRESULT WINAPI HTMLElement_get_filters(IHTMLElement *iface,
static
HRESULT
WINAPI
HTMLElement_put_ondragstart
(
IHTMLElement
*
iface
,
VARIANT
v
)
{
HTMLElement
*
This
=
impl_from_IHTMLElement
(
iface
);
FIXME
(
"(%p)->(
)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -1344,7 +1344,7 @@ static HRESULT WINAPI HTMLElement_toString(IHTMLElement *iface, BSTR *String)
static
HRESULT
WINAPI
HTMLElement_put_onbeforeupdate
(
IHTMLElement
*
iface
,
VARIANT
v
)
{
HTMLElement
*
This
=
impl_from_IHTMLElement
(
iface
);
FIXME
(
"(%p)->(
)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -1358,7 +1358,7 @@ static HRESULT WINAPI HTMLElement_get_onbeforeupdate(IHTMLElement *iface, VARIAN
static
HRESULT
WINAPI
HTMLElement_put_onafterupdate
(
IHTMLElement
*
iface
,
VARIANT
v
)
{
HTMLElement
*
This
=
impl_from_IHTMLElement
(
iface
);
FIXME
(
"(%p)->(
)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -1372,7 +1372,7 @@ static HRESULT WINAPI HTMLElement_get_onafterupdate(IHTMLElement *iface, VARIANT
static
HRESULT
WINAPI
HTMLElement_put_onerrorupdate
(
IHTMLElement
*
iface
,
VARIANT
v
)
{
HTMLElement
*
This
=
impl_from_IHTMLElement
(
iface
);
FIXME
(
"(%p)->(
)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -1386,7 +1386,7 @@ static HRESULT WINAPI HTMLElement_get_onerrorupdate(IHTMLElement *iface, VARIANT
static
HRESULT
WINAPI
HTMLElement_put_onrowexit
(
IHTMLElement
*
iface
,
VARIANT
v
)
{
HTMLElement
*
This
=
impl_from_IHTMLElement
(
iface
);
FIXME
(
"(%p)->(
)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -1400,7 +1400,7 @@ static HRESULT WINAPI HTMLElement_get_onrowexit(IHTMLElement *iface, VARIANT *p)
static
HRESULT
WINAPI
HTMLElement_put_onrowenter
(
IHTMLElement
*
iface
,
VARIANT
v
)
{
HTMLElement
*
This
=
impl_from_IHTMLElement
(
iface
);
FIXME
(
"(%p)->(
)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -1414,7 +1414,7 @@ static HRESULT WINAPI HTMLElement_get_onrowenter(IHTMLElement *iface, VARIANT *p
static
HRESULT
WINAPI
HTMLElement_put_ondatasetchanged
(
IHTMLElement
*
iface
,
VARIANT
v
)
{
HTMLElement
*
This
=
impl_from_IHTMLElement
(
iface
);
FIXME
(
"(%p)->(
)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -1428,7 +1428,7 @@ static HRESULT WINAPI HTMLElement_get_ondatasetchanged(IHTMLElement *iface, VARI
static
HRESULT
WINAPI
HTMLElement_put_ondataavailable
(
IHTMLElement
*
iface
,
VARIANT
v
)
{
HTMLElement
*
This
=
impl_from_IHTMLElement
(
iface
);
FIXME
(
"(%p)->(
)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -1442,7 +1442,7 @@ static HRESULT WINAPI HTMLElement_get_ondataavailable(IHTMLElement *iface, VARIA
static
HRESULT
WINAPI
HTMLElement_put_ondatasetcomplete
(
IHTMLElement
*
iface
,
VARIANT
v
)
{
HTMLElement
*
This
=
impl_from_IHTMLElement
(
iface
);
FIXME
(
"(%p)->(
)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -1456,7 +1456,7 @@ static HRESULT WINAPI HTMLElement_get_ondatasetcomplete(IHTMLElement *iface, VAR
static
HRESULT
WINAPI
HTMLElement_put_onfilterchange
(
IHTMLElement
*
iface
,
VARIANT
v
)
{
HTMLElement
*
This
=
impl_from_IHTMLElement
(
iface
);
FIXME
(
"(%p)->(
)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -2294,7 +2294,7 @@ static HRESULT WINAPI HTMLAttributeCollection_item(IHTMLAttributeCollection *ifa
hres
=
get_attr_dispid_by_name
(
This
,
V_BSTR
(
name
),
&
id
);
break
;
default:
FIXME
(
"unsupported
vt %x
\n
"
,
V_VT
(
name
));
FIXME
(
"unsupported
name %s
\n
"
,
debugstr_variant
(
name
));
hres
=
E_NOTIMPL
;
}
if
(
hres
==
DISP_E_UNKNOWNNAME
)
...
...
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