Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
7c94e424
Commit
7c94e424
authored
Sep 07, 2023
by
Gabriel Ivăncescu
Committed by
Alexandre Julliard
Sep 07, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mshtml: Trace the object name in dispex methods.
Signed-off-by:
Gabriel Ivăncescu
<
gabrielopcode@gmail.com
>
parent
6b9c2148
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
14 deletions
+14
-14
dispex.c
dlls/mshtml/dispex.c
+14
-14
No files found.
dlls/mshtml/dispex.c
View file @
7c94e424
...
...
@@ -1612,7 +1612,7 @@ static HRESULT WINAPI DispatchEx_GetTypeInfoCount(IDispatchEx *iface, UINT *pcti
{
DispatchEx
*
This
=
impl_from_IDispatchEx
(
iface
);
TRACE
(
"
(%p)->(%p)
\n
"
,
This
,
pctinfo
);
TRACE
(
"
%s (%p)->(%p)
\n
"
,
This
->
info
->
desc
->
name
,
This
,
pctinfo
);
*
pctinfo
=
1
;
return
S_OK
;
...
...
@@ -1624,7 +1624,7 @@ static HRESULT WINAPI DispatchEx_GetTypeInfo(IDispatchEx *iface, UINT iTInfo,
DispatchEx
*
This
=
impl_from_IDispatchEx
(
iface
);
HRESULT
hres
;
TRACE
(
"
(%p)->(%u %lu %p)
\n
"
,
This
,
iTInfo
,
lcid
,
ppTInfo
);
TRACE
(
"
%s (%p)->(%u %lu %p)
\n
"
,
This
->
info
->
desc
->
name
,
This
,
iTInfo
,
lcid
,
ppTInfo
);
hres
=
get_typeinfo
(
This
->
info
->
desc
->
disp_tid
,
ppTInfo
);
if
(
FAILED
(
hres
))
...
...
@@ -1641,8 +1641,8 @@ static HRESULT WINAPI DispatchEx_GetIDsOfNames(IDispatchEx *iface, REFIID riid,
DispatchEx
*
This
=
impl_from_IDispatchEx
(
iface
);
HRESULT
hres
=
S_OK
;
TRACE
(
"
(%p)->(%s %p %u %lu %p)
\n
"
,
This
,
debugstr_guid
(
riid
),
rgszNames
,
c
Names
,
lcid
,
rgDispId
);
TRACE
(
"
%s (%p)->(%s %p %u %lu %p)
\n
"
,
This
->
info
->
desc
->
name
,
This
,
debugstr_guid
(
riid
),
rgsz
Names
,
cNames
,
lcid
,
rgDispId
);
/* Native ignores all cNames > 1, and doesn't even fill them */
if
(
cNames
)
...
...
@@ -1657,8 +1657,8 @@ static HRESULT WINAPI DispatchEx_Invoke(IDispatchEx *iface, DISPID dispIdMember,
{
DispatchEx
*
This
=
impl_from_IDispatchEx
(
iface
);
TRACE
(
"
(%p)->(%ld %s %ld %d %p %p %p %p)
\n
"
,
This
,
dispIdMember
,
debugstr_guid
(
riid
)
,
lcid
,
wFlags
,
pDispParams
,
pVarResult
,
pExcepInfo
,
puArgErr
);
TRACE
(
"
%s (%p)->(%ld %s %ld %d %p %p %p %p)
\n
"
,
This
->
info
->
desc
->
name
,
This
,
dispIdMember
,
debugstr_guid
(
riid
),
lcid
,
wFlags
,
pDispParams
,
pVarResult
,
pExcepInfo
,
puArgErr
);
return
IDispatchEx_InvokeEx
(
&
This
->
IDispatchEx_iface
,
dispIdMember
,
lcid
,
wFlags
,
pDispParams
,
pVarResult
,
pExcepInfo
,
NULL
);
...
...
@@ -1670,7 +1670,7 @@ static HRESULT WINAPI DispatchEx_GetDispID(IDispatchEx *iface, BSTR bstrName, DW
dynamic_prop_t
*
dprop
;
HRESULT
hres
;
TRACE
(
"
(%p)->(%s %lx %p)
\n
"
,
This
,
debugstr_w
(
bstrName
),
grfdex
,
pid
);
TRACE
(
"
%s (%p)->(%s %lx %p)
\n
"
,
This
->
info
->
desc
->
name
,
This
,
debugstr_w
(
bstrName
),
grfdex
,
pid
);
if
(
grfdex
&
~
(
fdexNameCaseSensitive
|
fdexNameCaseInsensitive
|
fdexNameEnsure
|
fdexNameImplicit
|
FDEX_VERSION_MASK
))
FIXME
(
"Unsupported grfdex %lx
\n
"
,
grfdex
);
...
...
@@ -1696,7 +1696,7 @@ static HRESULT WINAPI DispatchEx_InvokeEx(IDispatchEx *iface, DISPID id, LCID lc
DispatchEx
*
This
=
impl_from_IDispatchEx
(
iface
);
HRESULT
hres
;
TRACE
(
"
(%p)->(%lx %lx %x %p %p %p %p)
\n
"
,
This
,
id
,
lcid
,
wFlags
,
pdp
,
pvarRes
,
pei
,
pspCaller
);
TRACE
(
"
%s (%p)->(%lx %lx %x %p %p %p %p)
\n
"
,
This
->
info
->
desc
->
name
,
This
,
id
,
lcid
,
wFlags
,
pdp
,
pvarRes
,
pei
,
pspCaller
);
if
(
!
ensure_real_info
(
This
))
return
E_OUTOFMEMORY
;
...
...
@@ -1782,7 +1782,7 @@ static HRESULT WINAPI DispatchEx_DeleteMemberByName(IDispatchEx *iface, BSTR nam
DISPID
id
;
HRESULT
hres
;
TRACE
(
"
(%p)->(%s %lx)
\n
"
,
This
,
debugstr_w
(
name
),
grfdex
);
TRACE
(
"
%s (%p)->(%s %lx)
\n
"
,
This
->
info
->
desc
->
name
,
This
,
debugstr_w
(
name
),
grfdex
);
hres
=
IDispatchEx_GetDispID
(
&
This
->
IDispatchEx_iface
,
name
,
grfdex
&
~
fdexNameEnsure
,
&
id
);
if
(
FAILED
(
hres
))
{
...
...
@@ -1799,7 +1799,7 @@ static HRESULT WINAPI DispatchEx_DeleteMemberByDispID(IDispatchEx *iface, DISPID
{
DispatchEx
*
This
=
impl_from_IDispatchEx
(
iface
);
TRACE
(
"
(%p)->(%lx)
\n
"
,
This
,
id
);
TRACE
(
"
%s (%p)->(%lx)
\n
"
,
This
->
info
->
desc
->
name
,
This
,
id
);
if
(
is_custom_dispid
(
id
)
&&
This
->
info
->
desc
->
vtbl
->
delete
)
return
This
->
info
->
desc
->
vtbl
->
delete
(
This
,
id
);
...
...
@@ -1828,7 +1828,7 @@ static HRESULT WINAPI DispatchEx_DeleteMemberByDispID(IDispatchEx *iface, DISPID
static
HRESULT
WINAPI
DispatchEx_GetMemberProperties
(
IDispatchEx
*
iface
,
DISPID
id
,
DWORD
grfdexFetch
,
DWORD
*
pgrfdex
)
{
DispatchEx
*
This
=
impl_from_IDispatchEx
(
iface
);
FIXME
(
"
(%p)->(%lx %lx %p)
\n
"
,
This
,
id
,
grfdexFetch
,
pgrfdex
);
FIXME
(
"
%s (%p)->(%lx %lx %p)
\n
"
,
This
->
info
->
desc
->
name
,
This
,
id
,
grfdexFetch
,
pgrfdex
);
return
E_NOTIMPL
;
}
...
...
@@ -1838,7 +1838,7 @@ static HRESULT WINAPI DispatchEx_GetMemberName(IDispatchEx *iface, DISPID id, BS
func_info_t
*
func
;
HRESULT
hres
;
TRACE
(
"
(%p)->(%lx %p)
\n
"
,
This
,
id
,
pbstrName
);
TRACE
(
"
%s (%p)->(%lx %p)
\n
"
,
This
->
info
->
desc
->
name
,
This
,
id
,
pbstrName
);
if
(
!
ensure_real_info
(
This
))
return
E_OUTOFMEMORY
;
...
...
@@ -1893,7 +1893,7 @@ static HRESULT WINAPI DispatchEx_GetNextDispID(IDispatchEx *iface, DWORD grfdex,
func_info_t
*
func
;
HRESULT
hres
;
TRACE
(
"
(%p)->(%lx %lx %p)
\n
"
,
This
,
grfdex
,
id
,
pid
);
TRACE
(
"
%s (%p)->(%lx %lx %p)
\n
"
,
This
->
info
->
desc
->
name
,
This
,
grfdex
,
id
,
pid
);
if
(
!
ensure_real_info
(
This
))
return
E_OUTOFMEMORY
;
...
...
@@ -1944,7 +1944,7 @@ static HRESULT WINAPI DispatchEx_GetNextDispID(IDispatchEx *iface, DWORD grfdex,
static
HRESULT
WINAPI
DispatchEx_GetNameSpaceParent
(
IDispatchEx
*
iface
,
IUnknown
**
ppunk
)
{
DispatchEx
*
This
=
impl_from_IDispatchEx
(
iface
);
FIXME
(
"
(%p)->(%p)
\n
"
,
This
,
ppunk
);
FIXME
(
"
%s (%p)->(%p)
\n
"
,
This
->
info
->
desc
->
name
,
This
,
ppunk
);
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