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
21f0c64d
Commit
21f0c64d
authored
Mar 18, 2010
by
Jacek Caban
Committed by
Alexandre Julliard
Mar 18, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Added IHTMLImgElement::onload property implementation.
parent
df0a35e3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
htmlimg.c
dlls/mshtml/htmlimg.c
+9
-4
No files found.
dlls/mshtml/htmlimg.c
View file @
21f0c64d
...
@@ -28,6 +28,7 @@
...
@@ -28,6 +28,7 @@
#include "wine/debug.h"
#include "wine/debug.h"
#include "mshtml_private.h"
#include "mshtml_private.h"
#include "htmlevent.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
mshtml
);
WINE_DEFAULT_DEBUG_CHANNEL
(
mshtml
);
...
@@ -388,15 +389,19 @@ static HRESULT WINAPI HTMLImgElement_get_align(IHTMLImgElement *iface, BSTR *p)
...
@@ -388,15 +389,19 @@ static HRESULT WINAPI HTMLImgElement_get_align(IHTMLImgElement *iface, BSTR *p)
static
HRESULT
WINAPI
HTMLImgElement_put_onload
(
IHTMLImgElement
*
iface
,
VARIANT
v
)
static
HRESULT
WINAPI
HTMLImgElement_put_onload
(
IHTMLImgElement
*
iface
,
VARIANT
v
)
{
{
HTMLImgElement
*
This
=
HTMLIMG_THIS
(
iface
);
HTMLImgElement
*
This
=
HTMLIMG_THIS
(
iface
);
FIXME
(
"(%p)->()
\n
"
,
This
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%s)
\n
"
,
This
,
debugstr_variant
(
&
v
));
return
set_node_event
(
&
This
->
element
.
node
,
EVENTID_LOAD
,
&
v
);
}
}
static
HRESULT
WINAPI
HTMLImgElement_get_onload
(
IHTMLImgElement
*
iface
,
VARIANT
*
p
)
static
HRESULT
WINAPI
HTMLImgElement_get_onload
(
IHTMLImgElement
*
iface
,
VARIANT
*
p
)
{
{
HTMLImgElement
*
This
=
HTMLIMG_THIS
(
iface
);
HTMLImgElement
*
This
=
HTMLIMG_THIS
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
get_node_event
(
&
This
->
element
.
node
,
EVENTID_LOAD
,
p
);
}
}
static
HRESULT
WINAPI
HTMLImgElement_put_onerror
(
IHTMLImgElement
*
iface
,
VARIANT
v
)
static
HRESULT
WINAPI
HTMLImgElement_put_onerror
(
IHTMLImgElement
*
iface
,
VARIANT
v
)
...
...
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