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
70297c42
Commit
70297c42
authored
Apr 23, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Apr 24, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msdmo: Add more tracing.
parent
55620f09
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
2 deletions
+14
-2
dmoreg.c
dlls/msdmo/dmoreg.c
+14
-2
No files found.
dlls/msdmo/dmoreg.c
View file @
70297c42
...
...
@@ -506,7 +506,6 @@ static HRESULT WINAPI IEnumDMO_fnNext(
WCHAR
**
Names
,
DWORD
*
pcItemsFetched
)
{
FILETIME
ft
;
HKEY
hkey
;
WCHAR
szNextKey
[
MAX_PATH
];
WCHAR
szGuidKey
[
64
];
...
...
@@ -529,7 +528,7 @@ static HRESULT WINAPI IEnumDMO_fnNext(
This
->
index
++
;
len
=
MAX_PATH
;
ret
=
RegEnumKeyExW
(
This
->
hkey
,
This
->
index
,
szNextKey
,
&
len
,
NULL
,
NULL
,
NULL
,
&
ft
);
ret
=
RegEnumKeyExW
(
This
->
hkey
,
This
->
index
,
szNextKey
,
&
len
,
NULL
,
NULL
,
NULL
,
NULL
);
if
(
ret
!=
ERROR_SUCCESS
)
{
hres
=
HRESULT_FROM_WIN32
(
ret
);
...
...
@@ -552,6 +551,7 @@ static HRESULT WINAPI IEnumDMO_fnNext(
wsprintfW
(
szKey
,
szCat2Fmt
,
szDMORootKey
,
szNextKey
);
ret
=
RegOpenKeyExW
(
HKEY_CLASSES_ROOT
,
szKey
,
0
,
KEY_READ
,
&
hkey
);
TRACE
(
"testing %s
\n
"
,
debugstr_w
(
szKey
));
if
(
This
->
pInTypes
)
{
...
...
@@ -571,6 +571,12 @@ static HRESULT WINAPI IEnumDMO_fnNext(
pInTypes
=
(
DMO_PARTIAL_MEDIATYPE
*
)
szValue
;
TRACE
(
"read %d intypes for %s:
\n
"
,
cInTypes
,
debugstr_w
(
szKey
));
for
(
i
=
0
;
i
<
cInTypes
;
i
++
)
{
TRACE
(
"intype %d: type %s, subtype %s
\n
"
,
i
,
debugstr_guid
(
&
pInTypes
[
i
].
type
),
debugstr_guid
(
&
pInTypes
[
i
].
subtype
));
}
for
(
i
=
0
;
i
<
This
->
cInTypes
;
i
++
)
{
for
(
j
=
0
;
j
<
cInTypes
;
j
++
)
...
...
@@ -608,6 +614,12 @@ static HRESULT WINAPI IEnumDMO_fnNext(
pOutTypes
=
(
DMO_PARTIAL_MEDIATYPE
*
)
szValue
;
TRACE
(
"read %d outtypes for %s:
\n
"
,
cOutTypes
,
debugstr_w
(
szKey
));
for
(
i
=
0
;
i
<
cOutTypes
;
i
++
)
{
TRACE
(
"outtype %d: type %s, subtype %s
\n
"
,
i
,
debugstr_guid
(
&
pOutTypes
[
i
].
type
),
debugstr_guid
(
&
pOutTypes
[
i
].
subtype
));
}
for
(
i
=
0
;
i
<
This
->
cOutTypes
;
i
++
)
{
for
(
j
=
0
;
j
<
cOutTypes
;
j
++
)
...
...
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