mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 20:18:28 +00:00
ole32: Only trace a clipboard format name if it has one.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
77e566a3cb
commit
c85eaae44c
1 changed files with 5 additions and 3 deletions
|
@ -1198,9 +1198,11 @@ static HRESULT get_priv_data(ole_priv_data **data)
|
|||
|
||||
for(cf = 0; (cf = EnumClipboardFormats(cf)) != 0; count++)
|
||||
{
|
||||
char buf[100];
|
||||
GetClipboardFormatNameA(cf, buf, sizeof(buf));
|
||||
TRACE("cf %04x %s\n", cf, buf);
|
||||
WCHAR buf[256];
|
||||
if (GetClipboardFormatNameW(cf, buf, sizeof(buf)))
|
||||
TRACE("cf %04x %s\n", cf, debugstr_w(buf));
|
||||
else
|
||||
TRACE("cf %04x\n", cf);
|
||||
}
|
||||
TRACE("count %d\n", count);
|
||||
size += count * sizeof(ret->entries[0]);
|
||||
|
|
Loading…
Reference in a new issue