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
7e15e494
Commit
7e15e494
authored
Jan 25, 2019
by
Jacek Caban
Committed by
Alexandre Julliard
Jan 25, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Add IDOMCustomEvent::initCustomEvent implementation.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
78d75e4a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
htmlevent.c
dlls/mshtml/htmlevent.c
+9
-2
No files found.
dlls/mshtml/htmlevent.c
View file @
7e15e494
...
...
@@ -2116,8 +2116,15 @@ static HRESULT WINAPI DOMCustomEvent_initCustomEvent(IDOMCustomEvent *iface, BST
VARIANT_BOOL
cancelable
,
VARIANT
*
detail
)
{
DOMCustomEvent
*
This
=
impl_from_IDOMCustomEvent
(
iface
);
FIXME
(
"(%p)->(%s %x %x %p)
\n
"
,
This
,
debugstr_w
(
type
),
can_bubble
,
cancelable
,
debugstr_variant
(
detail
));
return
E_NOTIMPL
;
HRESULT
hres
;
TRACE
(
"(%p)->(%s %x %x %p)
\n
"
,
This
,
debugstr_w
(
type
),
can_bubble
,
cancelable
,
debugstr_variant
(
detail
));
hres
=
IDOMEvent_initEvent
(
&
This
->
event
.
IDOMEvent_iface
,
type
,
can_bubble
,
cancelable
);
if
(
FAILED
(
hres
))
return
hres
;
return
VariantCopy
(
&
This
->
detail
,
detail
);
}
static
const
IDOMCustomEventVtbl
DOMCustomEventVtbl
=
{
...
...
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