Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
80354e50
Commit
80354e50
authored
Feb 15, 2011
by
Andrew Nguyen
Committed by
Alexandre Julliard
Feb 15, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dxdiagn: Restore a few traces in the container construction functions.
parent
a9d1f1bb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
provider.c
dlls/dxdiagn/provider.c
+10
-0
No files found.
dlls/dxdiagn/provider.c
View file @
80354e50
...
...
@@ -635,6 +635,9 @@ static HRESULT fill_file_description(IDxDiagContainerImpl_Container *node, const
UINT
uiLength
;
VS_FIXEDFILEINFO
*
pFileInfo
;
TRACE
(
"Filling container %p for %s in %s
\n
"
,
node
,
debugstr_w
(
szFileName
),
debugstr_w
(
szFilePath
));
szFile
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
WCHAR
)
*
(
lstrlenW
(
szFilePath
)
+
lstrlenW
(
szFileName
)
+
2
/* slash + terminator */
));
if
(
!
szFile
)
...
...
@@ -680,6 +683,8 @@ static HRESULT fill_file_description(IDxDiagContainerImpl_Container *node, const
HIWORD
(
pFileInfo
->
dwFileVersionLS
),
LOWORD
(
pFileInfo
->
dwFileVersionLS
));
TRACE
(
"Found version as (%s)
\n
"
,
debugstr_w
(
szVersion_v
));
hr
=
add_bstr_property
(
node
,
szVersion
,
szVersion_v
);
if
(
FAILED
(
hr
))
goto
cleanup
;
...
...
@@ -896,6 +901,9 @@ static HRESULT fill_filter_container(IDxDiagContainerImpl_Container *subcont, IM
if
(
FAILED
(
hr
))
goto
cleanup
;
TRACE
(
"Name = %s
\n
"
,
debugstr_w
(
V_BSTR
(
&
friendly_name
)));
TRACE
(
"CLSID = %s
\n
"
,
debugstr_w
(
V_BSTR
(
&
clsid_name
)));
hr
=
add_bstr_property
(
subcont
,
szName
,
V_BSTR
(
&
friendly_name
));
if
(
FAILED
(
hr
))
goto
cleanup
;
...
...
@@ -990,6 +998,8 @@ static HRESULT build_directshowfilters_tree(IDxDiagContainerImpl_Container *node
continue
;
}
TRACE
(
"Enumerating class %s
\n
"
,
debugstr_guid
(
&
clsidCat
));
while
(
IEnumMoniker_Next
(
pEnum
,
1
,
&
pMoniker
,
NULL
)
==
S_OK
)
{
WCHAR
bufferW
[
10
];
...
...
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