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
e8b0e7c1
Commit
e8b0e7c1
authored
Jun 16, 2023
by
Zebediah Figura
Committed by
Alexandre Julliard
Jun 19, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xaudio2/tests: Fix the IID_IXAudio28 declaration.
This was accidentally copied from the 2.9 version instead in
14c44d0b
.
parent
8d2de5db
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
xaudio2.c
dlls/xaudio2_7/tests/xaudio2.c
+2
-3
No files found.
dlls/xaudio2_7/tests/xaudio2.c
View file @
e8b0e7c1
...
...
@@ -38,7 +38,7 @@
#include "ksmedia.h"
static
const
GUID
IID_IXAudio27
=
{
0x8bcf1f58
,
0x9fe7
,
0x4583
,
{
0x8a
,
0xc6
,
0xe2
,
0xad
,
0xc4
,
0x65
,
0xc8
,
0xbb
}};
static
const
GUID
IID_IXAudio28
=
{
0x
2b02e3cf
,
0x2e0b
,
0x4ec3
,
{
0xbe
,
0x45
,
0x1b
,
0x2a
,
0x3f
,
0xe7
,
0x21
,
0x0d
}};
static
const
GUID
IID_IXAudio28
=
{
0x
60d8dac8
,
0x5aa1
,
0x4e8e
,
{
0xb5
,
0x97
,
0x2f
,
0x5e
,
0x28
,
0x83
,
0xd4
,
0x84
}};
static
const
GUID
CLSID_AudioVolumeMeter20
=
{
0xc0c56f46
,
0x29b1
,
0x44e9
,
{
0x99
,
0x39
,
0xa3
,
0x2c
,
0xe8
,
0x68
,
0x67
,
0xe2
}};
static
const
GUID
CLSID_AudioVolumeMeter21
=
{
0xc1e3f122
,
0xa2ea
,
0x442c
,
{
0x85
,
0x4f
,
0x20
,
0xd9
,
0x8f
,
0x83
,
0x57
,
0xa1
}};
...
...
@@ -1214,8 +1214,7 @@ START_TEST(xaudio2)
if
(
hr
==
S_OK
)
IXAudio2_Release
(
audio2
);
hr
=
IXAudio2_QueryInterface
(
audio
,
&
IID_IXAudio28
,
(
void
**
)
&
audio2
);
todo_wine_if
(
!
xaudio27
)
ok
(
hr
==
(
xaudio27
?
E_NOINTERFACE
:
S_OK
),
"Got hr %#lx.
\n
"
,
hr
);
ok
(
hr
==
(
xaudio27
?
E_NOINTERFACE
:
S_OK
),
"Got hr %#lx.
\n
"
,
hr
);
if
(
hr
==
S_OK
)
IXAudio2_Release
(
audio2
);
...
...
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