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
25cf21bd
Commit
25cf21bd
authored
May 07, 2012
by
Detlef Riekenberg
Committed by
Alexandre Julliard
May 08, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
devenum: Remove tabs and duplicate newlines from TRACE.
parent
31291cdc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
createdevenum.c
dlls/devenum/createdevenum.c
+2
-3
factory.c
dlls/devenum/factory.c
+2
-2
No files found.
dlls/devenum/createdevenum.c
View file @
25cf21bd
...
...
@@ -62,7 +62,7 @@ static HRESULT DEVENUM_CreateSpecialCategories(void);
static
HRESULT
WINAPI
DEVENUM_ICreateDevEnum_QueryInterface
(
ICreateDevEnum
*
iface
,
REFIID
riid
,
void
**
ppv
)
{
TRACE
(
"
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
riid
)
);
TRACE
(
"
(%p)->(%s, %p)
\n
"
,
iface
,
debugstr_guid
(
riid
),
ppv
);
if
(
!
ppv
)
return
E_POINTER
;
...
...
@@ -463,8 +463,7 @@ static HRESULT WINAPI DEVENUM_ICreateDevEnum_CreateClassEnumerator(
HKEY
hbasekey
;
HRESULT
hr
;
TRACE
(
"(%p)->(%s, %p, %x)
\n\t
DeviceClass:
\t
%s
\n
"
,
iface
,
debugstr_guid
(
clsidDeviceClass
),
ppEnumMoniker
,
dwFlags
,
debugstr_guid
(
clsidDeviceClass
));
TRACE
(
"(%p)->(%s, %p, %x)
\n
"
,
iface
,
debugstr_guid
(
clsidDeviceClass
),
ppEnumMoniker
,
dwFlags
);
if
(
!
ppEnumMoniker
)
return
E_POINTER
;
...
...
dlls/devenum/factory.c
View file @
25cf21bd
...
...
@@ -31,7 +31,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(devenum);
static
HRESULT
WINAPI
DEVENUM_IClassFactory_QueryInterface
(
IClassFactory
*
iface
,
REFIID
riid
,
void
**
ppvObj
)
{
TRACE
(
"
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
riid
)
);
TRACE
(
"
(%p)->(%s, %p)
\n
"
,
iface
,
debugstr_guid
(
riid
),
ppvObj
);
if
(
ppvObj
==
NULL
)
return
E_POINTER
;
...
...
@@ -81,7 +81,7 @@ static ULONG WINAPI DEVENUM_IClassFactory_Release(IClassFactory *iface)
static
HRESULT
WINAPI
DEVENUM_IClassFactory_CreateInstance
(
IClassFactory
*
iface
,
IUnknown
*
pUnkOuter
,
REFIID
riid
,
void
**
ppvObj
)
{
TRACE
(
"
\n\t
IID:
\t
%s
\n
"
,
debugstr_guid
(
riid
)
);
TRACE
(
"
(%p)->(%p, %s, %p)
\n
"
,
iface
,
pUnkOuter
,
debugstr_guid
(
riid
),
ppvObj
);
if
(
ppvObj
==
NULL
)
return
E_POINTER
;
...
...
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