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
59bb360a
Commit
59bb360a
authored
Nov 03, 2009
by
Jörg Höhle
Committed by
Alexandre Julliard
Nov 04, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mciwave: Correct MCI return codes.
parent
d3dd250c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
mciwave.c
dlls/mciwave/mciwave.c
+3
-3
No files found.
dlls/mciwave/mciwave.c
View file @
59bb360a
...
...
@@ -791,7 +791,7 @@ static DWORD WAVE_mciPlay(MCIDEVICEID wDevID, DWORD_PTR dwFlags, DWORD_PTR pmt,
TRACE
(
"Playing from byte=%u to byte=%u
\n
"
,
wmw
->
dwPosition
,
end
);
if
(
end
<=
wmw
->
dwPosition
)
return
TRUE
;
return
MMSYSERR_NOERROR
;
#define WAVE_ALIGN_ON_BLOCK(wmw,v) \
...
...
@@ -1026,7 +1026,7 @@ static DWORD WAVE_mciRecord(MCIDEVICEID wDevID, DWORD_PTR dwFlags, DWORD_PTR pmt
if
(
end
<=
wmw
->
dwPosition
)
{
return
TRUE
;
return
MMSYSERR_NOERROR
;
}
#define WAVE_ALIGN_ON_BLOCK(wmw,v) \
...
...
@@ -1471,7 +1471,7 @@ static DWORD WAVE_mciStatus(MCIDEVICEID wDevID, DWORD dwFlags, LPMCI_STATUS_PARM
lpParms
->
dwReturn
=
id
;
}
else
{
lpParms
->
dwReturn
=
0
;
ret
=
MCIERR_WAVE_
IN
PUTUNSPECIFIED
;
ret
=
MCIERR_WAVE_
OUT
PUTUNSPECIFIED
;
}
}
break
;
...
...
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