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
1659bd62
Commit
1659bd62
authored
Nov 02, 2008
by
Vitaliy Margolen
Committed by
Alexandre Julliard
Nov 03, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dxdiagn: Replace remaining FIXMEs with TRACEs.
parent
88a883df
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
provider.c
dlls/dxdiagn/provider.c
+6
-6
No files found.
dlls/dxdiagn/provider.c
View file @
1659bd62
...
...
@@ -203,8 +203,8 @@ static HRESULT DXDiag_AddFileDescContainer(IDxDiagContainer* pSubCont, const WCH
UINT
uiLength
;
VS_FIXEDFILEINFO
*
pFileInfo
;
FIXM
E
(
"(%p,%s)
\n
"
,
pSubCont
,
debugstr_w
(
szFileName
));
TRAC
E
(
"(%p,%s)
\n
"
,
pSubCont
,
debugstr_w
(
szFileName
));
lstrcpyW
(
szFile
,
szFilePath
);
lstrcatW
(
szFile
,
szSlashSep
);
lstrcatW
(
szFile
,
szFileName
);
...
...
@@ -598,13 +598,13 @@ static HRESULT DXDiag_InitDXDiagDirectShowFiltersContainer(IDxDiagContainer* pSu
IEnumMoniker
*
pEnum
=
NULL
;
IMoniker
*
pMoniker
=
NULL
;
hr
=
ICreateDevEnum_CreateClassEnumerator
(
pCreateDevEnum
,
&
clsidCat
,
&
pEnum
,
0
);
FIXM
E
(
"
\t
ClassEnumerator for clsid(%s) pEnum(%p)
\n
"
,
debugstr_guid
(
&
clsidCat
),
pEnum
);
TRAC
E
(
"
\t
ClassEnumerator for clsid(%s) pEnum(%p)
\n
"
,
debugstr_guid
(
&
clsidCat
),
pEnum
);
if
(
FAILED
(
hr
)
||
pEnum
==
NULL
)
{
goto
class_enum_failed
;
}
while
(
NULL
!=
pEnum
&&
S_OK
==
IEnumMoniker_Next
(
pEnum
,
1
,
&
pMoniker
,
NULL
))
{
IPropertyBag
*
pPropFilterBag
=
NULL
;
FIXM
E
(
"
\t
IEnumMoniker_Next(%p, 1, %p)
\n
"
,
pEnum
,
pMoniker
);
TRAC
E
(
"
\t
IEnumMoniker_Next(%p, 1, %p)
\n
"
,
pEnum
,
pMoniker
);
hr
=
IMoniker_BindToStorage
(
pMoniker
,
NULL
,
NULL
,
&
IID_IPropertyBag
,
(
void
**
)
&
pPropFilterBag
);
if
(
SUCCEEDED
(
hr
))
{
LPBYTE
pData
=
NULL
;
...
...
@@ -619,11 +619,11 @@ static HRESULT DXDiag_InitDXDiagDirectShowFiltersContainer(IDxDiagContainer* pSu
hr
=
IPropertyBag_Read
(
pPropFilterBag
,
wszFriendlyName
,
&
v
,
0
);
hr
=
IDxDiagContainerImpl_AddProp
(
pSubCont
,
szName
,
&
v
);
FIXM
E
(
"
\t
Name:%s
\n
"
,
debugstr_w
(
V_BSTR
(
&
v
)));
TRAC
E
(
"
\t
Name:%s
\n
"
,
debugstr_w
(
V_BSTR
(
&
v
)));
VariantClear
(
&
v
);
hr
=
IPropertyBag_Read
(
pPropFilterBag
,
wszClsidName
,
&
v
,
0
);
FIXM
E
(
"
\t
Clsid:%s
\n
"
,
debugstr_w
(
V_BSTR
(
&
v
)));
TRAC
E
(
"
\t
Clsid:%s
\n
"
,
debugstr_w
(
V_BSTR
(
&
v
)));
hr
=
IDxDiagContainerImpl_AddProp
(
pSubCont
,
szClsidFilter
,
&
v
);
VariantClear
(
&
v
);
...
...
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