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
7959778d
Commit
7959778d
authored
Aug 29, 2011
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Aug 29, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dsound/tests: Primary and secondary buffers use the same IDirectSoundBuffer vtbl.
parent
e1f83fd2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
dsound.c
dlls/dsound/tests/dsound.c
+3
-0
dsound8.c
dlls/dsound/tests/dsound8.c
+3
-0
No files found.
dlls/dsound/tests/dsound.c
View file @
7959778d
...
...
@@ -627,6 +627,9 @@ static HRESULT test_primary_secondary(LPGUID lpGuid)
"IDirectSound_CreateSoundBuffer() failed to create a secondary buffer %08x
\n
"
,
rc
);
if
(
rc
==
DS_OK
&&
secondary
!=
NULL
)
{
todo_wine
ok
(
primary
->
lpVtbl
==
secondary
->
lpVtbl
,
"Primary and secondary buffers have different vtbls.
\n
"
);
test_buffer
(
dso
,
&
secondary
,
0
,
FALSE
,
0
,
FALSE
,
0
,
winetest_interactive
,
1
.
0
,
0
,
NULL
,
0
,
0
,
FALSE
,
0
);
...
...
dlls/dsound/tests/dsound8.c
View file @
7959778d
...
...
@@ -639,6 +639,9 @@ static HRESULT test_primary_secondary8(LPGUID lpGuid)
"buffer %08x
\n
"
,
rc
);
if
(
rc
==
DS_OK
&&
secondary
!=
NULL
)
{
todo_wine
ok
(
primary
->
lpVtbl
==
secondary
->
lpVtbl
,
"Primary and secondary buffers have different vtbls.
\n
"
);
test_buffer8
(
dso
,
&
secondary
,
0
,
FALSE
,
0
,
FALSE
,
0
,
winetest_interactive
,
1
.
0
,
0
,
NULL
,
0
,
0
);
...
...
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