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
35e4aac8
Commit
35e4aac8
authored
Jul 26, 2013
by
Andrew Eikum
Committed by
Alexandre Julliard
Jul 27, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winmm/tests: Fix waveInGetPosition type.
We're comparing the reported value against dwBytesRecorded, so we should request the value to be in bytes.
parent
fdf8ab11
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
capture.c
dlls/winmm/tests/capture.c
+2
-1
No files found.
dlls/winmm/tests/capture.c
View file @
35e4aac8
...
...
@@ -226,10 +226,11 @@ static void wave_in_test_deviceIn(int device, LPWAVEFORMATEX pwfx, DWORD format,
"frag.dwBytesRecorded=%d, should=%d
\n
"
,
frag
.
dwBytesRecorded
,
pwfx
->
nAvgBytesPerSec
);
mmt
.
wType
=
TIME_
SAMPL
ES
;
mmt
.
wType
=
TIME_
BYT
ES
;
rc
=
waveInGetPosition
(
win
,
&
mmt
,
sizeof
(
mmt
));
ok
(
rc
==
MMSYSERR_NOERROR
,
"waveInGetPosition(%s): rc=%s
\n
"
,
dev_name
(
device
),
wave_in_error
(
rc
));
ok
(
mmt
.
wType
==
TIME_BYTES
,
"doesn't support TIME_BYTES: %u
\n
"
,
mmt
.
wType
);
ok
(
mmt
.
u
.
cb
==
frag
.
dwBytesRecorded
,
"Got wrong position: %u
\n
"
,
mmt
.
u
.
cb
);
/* stop playing on error */
...
...
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