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
87323579
Commit
87323579
authored
Jan 14, 2004
by
Robert Lunnon
Committed by
Alexandre Julliard
Jan 14, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed type mismatch in widDsCreate.
parent
761fce52
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
audio.c
dlls/winmm/wineaudioio/audio.c
+3
-3
No files found.
dlls/winmm/wineaudioio/audio.c
View file @
87323579
...
@@ -589,7 +589,7 @@ static void wodPlayer_Reset(WINE_WAVEOUT* wwo, WORD uDevID, BOOL reset)
...
@@ -589,7 +589,7 @@ static void wodPlayer_Reset(WINE_WAVEOUT* wwo, WORD uDevID, BOOL reset)
/* flush all possible output */
/* flush all possible output */
/*
/*
*FIXME In the original code I think this aborted IO. With Libaudioio you have to wait
*FIXME In the original code I think this aborted IO. With Libaudioio you have to wait
* The following function just blocks until
l
I/O is complete
* The following function just blocks until I/O is complete
* There is possibly a way to abort the blocks buffered in streams
* There is possibly a way to abort the blocks buffered in streams
* but this approach seems to work OK
* but this approach seems to work OK
*/
*/
...
@@ -2297,7 +2297,7 @@ DWORD WINAPI LIBAUDIOIO_widMessage(WORD wDevID, WORD wMsg, DWORD dwUser,
...
@@ -2297,7 +2297,7 @@ DWORD WINAPI LIBAUDIOIO_widMessage(WORD wDevID, WORD wMsg, DWORD dwUser,
/*======================================================================*
/*======================================================================*
* Low level DSOUND capture implementation *
* Low level DSOUND capture implementation *
*======================================================================*/
*======================================================================*/
static
DWORD
widDsCreate
(
UINT
wDevID
,
PIDSDRIVER
*
drv
)
static
DWORD
widDsCreate
(
UINT
wDevID
,
PIDS
C
DRIVER
*
drv
)
{
{
/* we can't perform memory mapping as we don't have a file stream
/* we can't perform memory mapping as we don't have a file stream
interface with arts like we do with oss */
interface with arts like we do with oss */
...
@@ -2314,7 +2314,7 @@ static DWORD widDsDesc(UINT wDevID, PDSDRIVERDESC desc)
...
@@ -2314,7 +2314,7 @@ static DWORD widDsDesc(UINT wDevID, PDSDRIVERDESC desc)
return
MMSYSERR_NOERROR
;
return
MMSYSERR_NOERROR
;
}
}
static
DWORD
w
o
dDsGuid
(
UINT
wDevID
,
LPGUID
pGuid
)
static
DWORD
w
i
dDsGuid
(
UINT
wDevID
,
LPGUID
pGuid
)
{
{
memcpy
(
pGuid
,
&
DSDEVID_DefaultCapture
,
sizeof
(
GUID
));
memcpy
(
pGuid
,
&
DSDEVID_DefaultCapture
,
sizeof
(
GUID
));
return
MMSYSERR_NOERROR
;
return
MMSYSERR_NOERROR
;
...
...
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