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
c98ce23f
Commit
c98ce23f
authored
Jun 09, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Get rid of line feeds and tabs in traces.
parent
910455e4
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
21 additions
and
22 deletions
+21
-22
clipboard.c
dlls/ole32/clipboard.c
+1
-2
comcat.c
dlls/ole32/comcat.c
+13
-13
compobj.c
dlls/ole32/compobj.c
+3
-3
errorinfo.c
dlls/ole32/errorinfo.c
+1
-1
ftmarshal.c
dlls/ole32/ftmarshal.c
+1
-1
marshal.c
dlls/ole32/marshal.c
+2
-2
No files found.
dlls/ole32/clipboard.c
View file @
c98ce23f
...
...
@@ -997,8 +997,7 @@ static HRESULT get_priv_data(ole_priv_data **data)
{
char
buf
[
100
];
GetClipboardFormatNameA
(
cf
,
buf
,
sizeof
(
buf
));
TRACE
(
"
\t
cf %04x %s
\n
"
,
cf
,
buf
);
;
TRACE
(
"cf %04x %s
\n
"
,
cf
,
buf
);
}
TRACE
(
"count %d
\n
"
,
count
);
size
+=
count
*
sizeof
(
ret
->
entries
[
0
]);
...
...
dlls/ole32/comcat.c
View file @
c98ce23f
...
...
@@ -278,7 +278,7 @@ static HRESULT WINAPI COMCAT_ICatRegister_QueryInterface(
LPVOID
*
ppvObj
)
{
ComCatMgrImpl
*
This
=
(
ComCatMgrImpl
*
)
iface
;
TRACE
(
"
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
riid
));
TRACE
(
"%s
\n
"
,
debugstr_guid
(
riid
));
if
(
ppvObj
==
NULL
)
return
E_POINTER
;
...
...
@@ -515,7 +515,7 @@ static HRESULT WINAPI COMCAT_ICatInformation_GetCategoryDesc(
HKEY
key
;
HRESULT
res
;
TRACE
(
"
\n\t
CATID:
\t
%s
\n\t
LCID:
\t
%X
\n
"
,
debugstr_guid
(
rcatid
),
lcid
);
TRACE
(
"
CATID: %s LCID: %x
\n
"
,
debugstr_guid
(
rcatid
),
lcid
);
if
(
rcatid
==
NULL
||
ppszDesc
==
NULL
)
return
E_INVALIDARG
;
...
...
@@ -596,12 +596,12 @@ static HRESULT WINAPI COMCAT_ICatInformation_IsClassOfCategories(
if
(
WINE_TRACE_ON
(
ole
))
{
ULONG
count
;
TRACE
(
"
\n\t
CLSID:
\t
%s
\n\t
Implemented %u
\n
"
,
debugstr_guid
(
rclsid
),
cImplemented
);
TRACE
(
"
CLSID: %s
Implemented %u
\n
"
,
debugstr_guid
(
rclsid
),
cImplemented
);
for
(
count
=
0
;
count
<
cImplemented
;
++
count
)
TRACE
(
"
\t\t
%s
\n
"
,
debugstr_guid
(
&
rgcatidImpl
[
count
]));
TRACE
(
"
\t
Required %u
\n
"
,
cRequired
);
TRACE
(
"
%s
\n
"
,
debugstr_guid
(
&
rgcatidImpl
[
count
]));
TRACE
(
"Required %u
\n
"
,
cRequired
);
for
(
count
=
0
;
count
<
cRequired
;
++
count
)
TRACE
(
"
\t\t
%s
\n
"
,
debugstr_guid
(
&
rgcatidReq
[
count
]));
TRACE
(
"
%s
\n
"
,
debugstr_guid
(
&
rgcatidReq
[
count
]));
}
if
((
cImplemented
&&
rgcatidImpl
==
NULL
)
||
...
...
@@ -637,7 +637,7 @@ static HRESULT WINAPI COMCAT_ICatInformation_EnumImplCategoriesOfClass(
'n'
,
't'
,
'e'
,
'd'
,
' '
,
'C'
,
'a'
,
't'
,
'e'
,
'g'
,
'o'
,
'r'
,
'i'
,
'e'
,
's'
,
0
};
TRACE
(
"
\n\t
CLSID:
\t
%s
\n
"
,
debugstr_guid
(
rclsid
));
TRACE
(
"%s
\n
"
,
debugstr_guid
(
rclsid
));
if
(
rclsid
==
NULL
||
ppenumCATID
==
NULL
)
return
E_POINTER
;
...
...
@@ -659,7 +659,7 @@ static HRESULT WINAPI COMCAT_ICatInformation_EnumReqCategoriesOfClass(
'd'
,
' '
,
'C'
,
'a'
,
't'
,
'e'
,
'g'
,
'o'
,
'r'
,
'i'
,
'e'
,
's'
,
0
};
TRACE
(
"
\n\t
CLSID:
\t
%s
\n
"
,
debugstr_guid
(
rclsid
));
TRACE
(
"%s
\n
"
,
debugstr_guid
(
rclsid
));
if
(
rclsid
==
NULL
||
ppenumCATID
==
NULL
)
return
E_POINTER
;
...
...
@@ -719,7 +719,7 @@ static HRESULT WINAPI COMCAT_IClassFactory_QueryInterface(
REFIID
riid
,
LPVOID
*
ppvObj
)
{
TRACE
(
"
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
riid
));
TRACE
(
"%s
\n
"
,
debugstr_guid
(
riid
));
if
(
ppvObj
==
NULL
)
return
E_POINTER
;
...
...
@@ -760,7 +760,7 @@ static HRESULT WINAPI COMCAT_IClassFactory_CreateInstance(
LPVOID
*
ppvObj
)
{
HRESULT
res
;
TRACE
(
"
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
riid
));
TRACE
(
"%s
\n
"
,
debugstr_guid
(
riid
));
if
(
ppvObj
==
NULL
)
return
E_POINTER
;
...
...
@@ -834,7 +834,7 @@ static HRESULT WINAPI COMCAT_IEnumCATEGORYINFO_QueryInterface(
REFIID
riid
,
LPVOID
*
ppvObj
)
{
TRACE
(
"
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
riid
));
TRACE
(
"%s
\n
"
,
debugstr_guid
(
riid
));
if
(
ppvObj
==
NULL
)
return
E_POINTER
;
...
...
@@ -1017,7 +1017,7 @@ static HRESULT WINAPI COMCAT_CLSID_IEnumGUID_QueryInterface(
REFIID
riid
,
LPVOID
*
ppvObj
)
{
TRACE
(
"
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
riid
));
TRACE
(
"%s
\n
"
,
debugstr_guid
(
riid
));
if
(
ppvObj
==
NULL
)
return
E_POINTER
;
...
...
@@ -1203,7 +1203,7 @@ static HRESULT WINAPI COMCAT_CATID_IEnumGUID_QueryInterface(
REFIID
riid
,
LPVOID
*
ppvObj
)
{
TRACE
(
"
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
riid
));
TRACE
(
"%s
\n
"
,
debugstr_guid
(
riid
));
if
(
ppvObj
==
NULL
)
return
E_POINTER
;
...
...
dlls/ole32/compobj.c
View file @
c98ce23f
...
...
@@ -2265,7 +2265,7 @@ HRESULT WINAPI CoGetClassObject(
APARTMENT
*
apt
;
BOOL
release_apt
=
FALSE
;
TRACE
(
"
\n\t
CLSID:
\t
%s,
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
iid
));
TRACE
(
"
CLSID: %s,IID:
%s
\n
"
,
debugstr_guid
(
rclsid
),
debugstr_guid
(
iid
));
if
(
!
ppv
)
return
E_INVALIDARG
;
...
...
@@ -2283,8 +2283,8 @@ HRESULT WINAPI CoGetClassObject(
}
if
(
pServerInfo
)
{
FIXME
(
"
\t
pServerInfo: name=%s
\n
"
,
debugstr_w
(
pServerInfo
->
pwszName
));
FIXME
(
"
\t\t
pAuthInfo=%p
\n
"
,
pServerInfo
->
pAuthInfo
);
FIXME
(
"
pServerInfo->name=%s pAuthInfo=%p
\n
"
,
debugstr_w
(
pServerInfo
->
pwszName
),
pServerInfo
->
pAuthInfo
);
}
/*
...
...
dlls/ole32/errorinfo.c
View file @
c98ce23f
...
...
@@ -191,7 +191,7 @@ static HRESULT WINAPI IErrorInfoImpl_QueryInterface(
VOID
**
ppvoid
)
{
ErrorInfoImpl
*
This
=
impl_from_IErrorInfo
(
iface
);
TRACE
(
"(%p)->(
\n\t
IID:
\t
%s,%p)
\n
"
,
This
,
debugstr_guid
(
riid
),
ppvoid
);
TRACE
(
"(%p)->(%s,%p)
\n
"
,
This
,
debugstr_guid
(
riid
),
ppvoid
);
*
ppvoid
=
NULL
;
...
...
dlls/ole32/ftmarshal.c
View file @
c98ce23f
...
...
@@ -110,7 +110,7 @@ FTMarshalImpl_QueryInterface (LPMARSHAL iface, REFIID riid, LPVOID * ppv)
FTMarshalImpl
*
This
=
impl_from_IMarshal
(
iface
);
TRACE
(
"(%p)->(
\n\t
IID:
\t
%s,%p)
\n
"
,
This
,
debugstr_guid
(
riid
),
ppv
);
TRACE
(
"(%p)->(%s,%p)
\n
"
,
This
,
debugstr_guid
(
riid
),
ppv
);
return
IUnknown_QueryInterface
(
This
->
pUnkOuter
,
riid
,
ppv
);
}
...
...
dlls/ole32/marshal.c
View file @
c98ce23f
...
...
@@ -431,7 +431,7 @@ static HRESULT WINAPI Proxy_MarshalInterface(
if
(
SUCCEEDED
(
hr
))
{
TRACE
(
"writing stdobjref:
\n\t
flags = %04x
\n\t
cPublicRefs = %d
\n\t
oxid = %s
\n\t
oid = %s
\n\t
ipid = %s
\n
"
,
TRACE
(
"writing stdobjref:
flags = %04x cPublicRefs = %d oxid = %s oid = %s
ipid = %s
\n
"
,
stdobjref
.
flags
,
stdobjref
.
cPublicRefs
,
wine_dbgstr_longlong
(
stdobjref
.
oxid
),
wine_dbgstr_longlong
(
stdobjref
.
oid
),
...
...
@@ -1239,7 +1239,7 @@ static HRESULT unmarshal_object(const STDOBJREF *stdobjref, APARTMENT *apt,
assert
(
apt
);
TRACE
(
"stdobjref:
\n\t
flags = %04x
\n\t
cPublicRefs = %d
\n\t
oxid = %s
\n\t
oid = %s
\n\t
ipid = %s
\n
"
,
TRACE
(
"stdobjref:
flags = %04x cPublicRefs = %d oxid = %s oid = %s
ipid = %s
\n
"
,
stdobjref
->
flags
,
stdobjref
->
cPublicRefs
,
wine_dbgstr_longlong
(
stdobjref
->
oxid
),
wine_dbgstr_longlong
(
stdobjref
->
oid
),
...
...
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