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
757c3025
Commit
757c3025
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::detail property implementation.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
7e15e494
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
htmlevent.c
dlls/mshtml/htmlevent.c
+5
-2
No files found.
dlls/mshtml/htmlevent.c
View file @
757c3025
...
...
@@ -2108,8 +2108,11 @@ static HRESULT WINAPI DOMCustomEvent_Invoke(IDOMCustomEvent *iface, DISPID dispI
static
HRESULT
WINAPI
DOMCustomEvent_get_detail
(
IDOMCustomEvent
*
iface
,
VARIANT
*
p
)
{
DOMCustomEvent
*
This
=
impl_from_IDOMCustomEvent
(
iface
);
FIXME
(
"(%p)->(%p)
\n
"
,
This
,
p
);
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%p)
\n
"
,
This
,
p
);
V_VT
(
p
)
=
VT_EMPTY
;
return
VariantCopy
(
p
,
&
This
->
detail
);
}
static
HRESULT
WINAPI
DOMCustomEvent_initCustomEvent
(
IDOMCustomEvent
*
iface
,
BSTR
type
,
VARIANT_BOOL
can_bubble
,
...
...
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