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
3db78a2b
Commit
3db78a2b
authored
Jul 22, 2016
by
Andrey Gusev
Committed by
Alexandre Julliard
Jul 22, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Use debugstr_guid() in TRACE() messages.
Signed-off-by:
Andrey Gusev
<
andrey.goosev@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
cb901b5f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
classmoniker.c
dlls/ole32/classmoniker.c
+3
-3
No files found.
dlls/ole32/classmoniker.c
View file @
3db78a2b
...
...
@@ -231,7 +231,7 @@ static HRESULT WINAPI ClassMoniker_BindToObject(IMoniker* iface,
IClassActivator
*
pActivator
;
HRESULT
hr
;
TRACE
(
"(%p,
%p,%p,%p)
\n
"
,
pbc
,
pmkToLeft
,
riid
,
ppvResult
);
TRACE
(
"(%p,
%p, %s, %p)
\n
"
,
pbc
,
pmkToLeft
,
debugstr_guid
(
riid
)
,
ppvResult
);
bindopts
.
cbStruct
=
sizeof
(
bindopts
);
IBindCtx_GetBindOptions
(
pbc
,
(
BIND_OPTS
*
)
&
bindopts
);
...
...
@@ -264,7 +264,7 @@ static HRESULT WINAPI ClassMoniker_BindToStorage(IMoniker* iface,
REFIID
riid
,
VOID
**
ppvResult
)
{
TRACE
(
"(%p,
%p,%p,%p)
\n
"
,
pbc
,
pmkToLeft
,
riid
,
ppvResult
);
TRACE
(
"(%p,
%p, %s, %p)
\n
"
,
pbc
,
pmkToLeft
,
debugstr_guid
(
riid
)
,
ppvResult
);
return
IMoniker_BindToObject
(
iface
,
pbc
,
pmkToLeft
,
riid
,
ppvResult
);
}
...
...
@@ -586,7 +586,7 @@ static HRESULT WINAPI ClassMonikerROTData_QueryInterface(IROTData *iface,REFIID
ClassMoniker
*
This
=
impl_from_IROTData
(
iface
);
TRACE
(
"(%p,
%p,%p)
\n
"
,
iface
,
riid
,
ppvObject
);
TRACE
(
"(%p,
%s, %p)
\n
"
,
iface
,
debugstr_guid
(
riid
),
ppvObject
);
return
IMoniker_QueryInterface
(
&
This
->
IMoniker_iface
,
riid
,
ppvObject
);
}
...
...
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