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
aaed9de5
Commit
aaed9de5
authored
Apr 22, 2009
by
Huw Davies
Committed by
Alexandre Julliard
Apr 22, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Improve the TRACEs by printing the fmtetc contents.
parent
6a01f719
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
clipboard.c
dlls/ole32/clipboard.c
+3
-3
No files found.
dlls/ole32/clipboard.c
View file @
aaed9de5
...
@@ -1138,7 +1138,7 @@ static HRESULT WINAPI snapshot_GetData(IDataObject *iface, FORMATETC *fmt,
...
@@ -1138,7 +1138,7 @@ static HRESULT WINAPI snapshot_GetData(IDataObject *iface, FORMATETC *fmt,
ole_priv_data_entry
*
entry
;
ole_priv_data_entry
*
entry
;
DWORD
mask
;
DWORD
mask
;
TRACE
(
"(%p,
%p,%p)
\n
"
,
iface
,
fmt
,
med
);
TRACE
(
"(%p,
%p {%s}, %p)
\n
"
,
iface
,
fmt
,
dump_fmtetc
(
fmt
)
,
med
);
if
(
!
fmt
||
!
med
)
return
E_INVALIDARG
;
if
(
!
fmt
||
!
med
)
return
E_INVALIDARG
;
...
@@ -1203,7 +1203,7 @@ end:
...
@@ -1203,7 +1203,7 @@ end:
static
HRESULT
WINAPI
snapshot_GetDataHere
(
IDataObject
*
iface
,
FORMATETC
*
fmt
,
static
HRESULT
WINAPI
snapshot_GetDataHere
(
IDataObject
*
iface
,
FORMATETC
*
fmt
,
STGMEDIUM
*
med
)
STGMEDIUM
*
med
)
{
{
FIXME
(
"(%p, %p
, %p): stub
\n
"
,
iface
,
fmt
,
med
);
FIXME
(
"(%p, %p
{%s}, %p): stub
\n
"
,
iface
,
fmt
,
dump_fmtetc
(
fmt
)
,
med
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
@@ -1217,7 +1217,7 @@ static HRESULT WINAPI snapshot_GetDataHere(IDataObject *iface, FORMATETC *fmt,
...
@@ -1217,7 +1217,7 @@ static HRESULT WINAPI snapshot_GetDataHere(IDataObject *iface, FORMATETC *fmt,
*/
*/
static
HRESULT
WINAPI
snapshot_QueryGetData
(
IDataObject
*
iface
,
FORMATETC
*
fmt
)
static
HRESULT
WINAPI
snapshot_QueryGetData
(
IDataObject
*
iface
,
FORMATETC
*
fmt
)
{
{
FIXME
(
"(%p, %p
)
\n
"
,
iface
,
fmt
);
FIXME
(
"(%p, %p
{%s})
\n
"
,
iface
,
fmt
,
dump_fmtetc
(
fmt
)
);
if
(
!
fmt
)
return
E_INVALIDARG
;
if
(
!
fmt
)
return
E_INVALIDARG
;
...
...
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