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
827ce162
Commit
827ce162
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: Add code to create stub containers for DxDiag_DirectSound.
parent
5a2cb211
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
provider.c
dlls/dxdiagn/provider.c
+17
-0
No files found.
dlls/dxdiagn/provider.c
View file @
827ce162
...
...
@@ -1210,6 +1210,23 @@ cleanup:
static
HRESULT
build_directsound_tree
(
IDxDiagContainerImpl_Container
*
node
)
{
static
const
WCHAR
DxDiag_SoundDevices
[]
=
{
'D'
,
'x'
,
'D'
,
'i'
,
'a'
,
'g'
,
'_'
,
'S'
,
'o'
,
'u'
,
'n'
,
'd'
,
'D'
,
'e'
,
'v'
,
'i'
,
'c'
,
'e'
,
's'
,
0
};
static
const
WCHAR
DxDiag_SoundCaptureDevices
[]
=
{
'D'
,
'x'
,
'D'
,
'i'
,
'a'
,
'g'
,
'_'
,
'S'
,
'o'
,
'u'
,
'n'
,
'd'
,
'C'
,
'a'
,
'p'
,
't'
,
'u'
,
'r'
,
'e'
,
'D'
,
'e'
,
'v'
,
'i'
,
'c'
,
'e'
,
's'
,
0
};
IDxDiagContainerImpl_Container
*
cont
;
cont
=
allocate_information_node
(
DxDiag_SoundDevices
);
if
(
!
cont
)
return
E_OUTOFMEMORY
;
add_subcontainer
(
node
,
cont
);
cont
=
allocate_information_node
(
DxDiag_SoundCaptureDevices
);
if
(
!
cont
)
return
E_OUTOFMEMORY
;
add_subcontainer
(
node
,
cont
);
return
S_OK
;
}
...
...
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