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
6e3d322c
Commit
6e3d322c
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 htmldoc.c.
parent
f51ceff7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
18 deletions
+18
-18
htmldoc.c
dlls/mshtml/htmldoc.c
+18
-18
No files found.
dlls/mshtml/htmldoc.c
View file @
6e3d322c
...
...
@@ -494,7 +494,7 @@ static HRESULT WINAPI HTMLDocument_get_plugins(IHTMLDocument2 *iface, IHTMLEleme
static
HRESULT
WINAPI
HTMLDocument_put_alinkColor
(
IHTMLDocument2
*
iface
,
VARIANT
v
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument2
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
FIXME
(
"(%p)
->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -508,7 +508,7 @@ static HRESULT WINAPI HTMLDocument_get_alinkColor(IHTMLDocument2 *iface, VARIANT
static
HRESULT
WINAPI
HTMLDocument_put_bgColor
(
IHTMLDocument2
*
iface
,
VARIANT
v
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument2
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
FIXME
(
"(%p)
->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -522,7 +522,7 @@ static HRESULT WINAPI HTMLDocument_get_bgColor(IHTMLDocument2 *iface, VARIANT *p
static
HRESULT
WINAPI
HTMLDocument_put_fgColor
(
IHTMLDocument2
*
iface
,
VARIANT
v
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument2
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
FIXME
(
"(%p)
->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -536,7 +536,7 @@ static HRESULT WINAPI HTMLDocument_get_fgColor(IHTMLDocument2 *iface, VARIANT *p
static
HRESULT
WINAPI
HTMLDocument_put_linkColor
(
IHTMLDocument2
*
iface
,
VARIANT
v
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument2
(
iface
);
FIXME
(
"(%p)->(
)
\n
"
,
This
);
FIXME
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -550,7 +550,7 @@ static HRESULT WINAPI HTMLDocument_get_linkColor(IHTMLDocument2 *iface, VARIANT
static
HRESULT
WINAPI
HTMLDocument_put_vlinkColor
(
IHTMLDocument2
*
iface
,
VARIANT
v
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument2
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
FIXME
(
"(%p)
->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -821,7 +821,7 @@ static HRESULT document_write(HTMLDocument *This, SAFEARRAY *psarray, BOOL ln)
if
(
NS_FAILED
(
nsres
))
ERR
(
"Write failed: %08x
\n
"
,
nsres
);
}
else
{
FIXME
(
"
vt=%d
\n
"
,
V_VT
(
var
+
i
));
FIXME
(
"
unsupported arg[%d] = %s
\n
"
,
i
,
debugstr_variant
(
var
+
i
));
}
}
...
...
@@ -973,7 +973,7 @@ static HRESULT WINAPI HTMLDocument_execCommand(IHTMLDocument2 *iface, BSTR cmdID
VARIANT_BOOL
showUI
,
VARIANT
value
,
VARIANT_BOOL
*
pfRet
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument2
(
iface
);
FIXME
(
"(%p)->(%s %x %
p)
\n
"
,
This
,
debugstr_w
(
cmdID
),
showUI
,
pfRet
);
FIXME
(
"(%p)->(%s %x %
s %p)
\n
"
,
This
,
debugstr_w
(
cmdID
),
showUI
,
debugstr_variant
(
&
value
)
,
pfRet
);
return
E_NOTIMPL
;
}
...
...
@@ -1012,7 +1012,7 @@ static HRESULT WINAPI HTMLDocument_createElement(IHTMLDocument2 *iface, BSTR eTa
static
HRESULT
WINAPI
HTMLDocument_put_onhelp
(
IHTMLDocument2
*
iface
,
VARIANT
v
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument2
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
FIXME
(
"(%p)
->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -1044,7 +1044,7 @@ static HRESULT WINAPI HTMLDocument_get_onclick(IHTMLDocument2 *iface, VARIANT *p
static
HRESULT
WINAPI
HTMLDocument_put_ondblclick
(
IHTMLDocument2
*
iface
,
VARIANT
v
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument2
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
FIXME
(
"(%p)
->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -1094,7 +1094,7 @@ static HRESULT WINAPI HTMLDocument_get_onkeydown(IHTMLDocument2 *iface, VARIANT
static
HRESULT
WINAPI
HTMLDocument_put_onkeypress
(
IHTMLDocument2
*
iface
,
VARIANT
v
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument2
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
FIXME
(
"(%p)
->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -1127,7 +1127,7 @@ static HRESULT WINAPI HTMLDocument_put_onmousedown(IHTMLDocument2 *iface, VARIAN
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument2
(
iface
);
TRACE
(
"(%p)->(
)
\n
"
,
This
);
TRACE
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
set_doc_event
(
This
,
EVENTID_MOUSEDOWN
,
&
v
);
}
...
...
@@ -1145,7 +1145,7 @@ static HRESULT WINAPI HTMLDocument_put_onmousemove(IHTMLDocument2 *iface, VARIAN
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument2
(
iface
);
TRACE
(
"(%p)->(
)
\n
"
,
This
);
TRACE
(
"(%p)->(
%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
set_doc_event
(
This
,
EVENTID_MOUSEMOVE
,
&
v
);
}
...
...
@@ -1181,7 +1181,7 @@ static HRESULT WINAPI HTMLDocument_put_onmouseover(IHTMLDocument2 *iface, VARIAN
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument2
(
iface
);
TRACE
(
"(%p)
\n
"
,
This
);
TRACE
(
"(%p)
->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
set_doc_event
(
This
,
EVENTID_MOUSEOVER
,
&
v
);
}
...
...
@@ -1216,7 +1216,7 @@ static HRESULT WINAPI HTMLDocument_get_onreadystatechange(IHTMLDocument2 *iface,
static
HRESULT
WINAPI
HTMLDocument_put_onafterupdate
(
IHTMLDocument2
*
iface
,
VARIANT
v
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument2
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
FIXME
(
"(%p)
->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -1230,7 +1230,7 @@ static HRESULT WINAPI HTMLDocument_get_onafterupdate(IHTMLDocument2 *iface, VARI
static
HRESULT
WINAPI
HTMLDocument_put_onrowexit
(
IHTMLDocument2
*
iface
,
VARIANT
v
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument2
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
FIXME
(
"(%p)
->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -1244,7 +1244,7 @@ static HRESULT WINAPI HTMLDocument_get_onrowexit(IHTMLDocument2 *iface, VARIANT
static
HRESULT
WINAPI
HTMLDocument_put_onrowenter
(
IHTMLDocument2
*
iface
,
VARIANT
v
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument2
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
FIXME
(
"(%p)
->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -1363,7 +1363,7 @@ static HRESULT WINAPI HTMLDocument_get_styleSheets(IHTMLDocument2 *iface,
static
HRESULT
WINAPI
HTMLDocument_put_onbeforeupdate
(
IHTMLDocument2
*
iface
,
VARIANT
v
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument2
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
FIXME
(
"(%p)
->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
@@ -1377,7 +1377,7 @@ static HRESULT WINAPI HTMLDocument_get_onbeforeupdate(IHTMLDocument2 *iface, VAR
static
HRESULT
WINAPI
HTMLDocument_put_onerrorupdate
(
IHTMLDocument2
*
iface
,
VARIANT
v
)
{
HTMLDocument
*
This
=
impl_from_IHTMLDocument2
(
iface
);
FIXME
(
"(%p)
\n
"
,
This
);
FIXME
(
"(%p)
->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
)
);
return
E_NOTIMPL
;
}
...
...
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