Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
51ce8f25
Commit
51ce8f25
authored
Oct 15, 2013
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 16, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winmm/tests: Use the explicit mciSendStringA() form.
parent
ba3f1102
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
2 deletions
+2
-2
mci.c
dlls/winmm/tests/mci.c
+0
-0
mcicda.c
dlls/winmm/tests/mcicda.c
+0
-0
midi.c
dlls/winmm/tests/midi.c
+2
-2
No files found.
dlls/winmm/tests/mci.c
View file @
51ce8f25
This diff is collapsed.
Click to expand it.
dlls/winmm/tests/mcicda.c
View file @
51ce8f25
This diff is collapsed.
Click to expand it.
dlls/winmm/tests/midi.c
View file @
51ce8f25
...
...
@@ -244,13 +244,13 @@ static void test_midi_mci(HWND hwnd)
char
buf
[
1024
];
memset
(
buf
,
0
,
sizeof
(
buf
));
err
=
mciSendString
(
"sysinfo sequencer quantity"
,
buf
,
sizeof
(
buf
),
hwnd
);
err
=
mciSendString
A
(
"sysinfo sequencer quantity"
,
buf
,
sizeof
(
buf
),
hwnd
);
ok
(
!
err
,
"mci sysinfo sequencer quantity returned %d
\n
"
,
err
);
if
(
!
err
)
trace
(
"Found %s MCI sequencer devices
\n
"
,
buf
);
if
(
!
strcmp
(
buf
,
"0"
))
return
;
err
=
mciSendString
(
"capability sequencer can record"
,
buf
,
sizeof
(
buf
),
hwnd
);
err
=
mciSendString
A
(
"capability sequencer can record"
,
buf
,
sizeof
(
buf
),
hwnd
);
ok
(
!
err
,
"mci sysinfo sequencer quantity returned %d
\n
"
,
err
);
if
(
!
err
)
ok
(
!
strcmp
(
buf
,
"false"
),
"capability can record is %s
\n
"
,
buf
);
}
...
...
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