Fixed type mismatch in widDsCreate.

This commit is contained in:
Robert Lunnon 2004-01-14 05:39:05 +00:00 committed by Alexandre Julliard
parent 761fce5261
commit 8732357912
1 changed files with 3 additions and 3 deletions

View File

@ -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 untill 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,
/*======================================================================* /*======================================================================*
* Low level DSOUND capture implementation * * Low level DSOUND capture implementation *
*======================================================================*/ *======================================================================*/
static DWORD widDsCreate(UINT wDevID, PIDSDRIVER* drv) static DWORD widDsCreate(UINT wDevID, PIDSCDRIVER* 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)
return MMSYSERR_NOERROR; return MMSYSERR_NOERROR;
} }
static DWORD wodDsGuid(UINT wDevID, LPGUID pGuid) static DWORD widDsGuid(UINT wDevID, LPGUID pGuid)
{ {
memcpy(pGuid, &DSDEVID_DefaultCapture, sizeof(GUID)); memcpy(pGuid, &DSDEVID_DefaultCapture, sizeof(GUID));
return MMSYSERR_NOERROR; return MMSYSERR_NOERROR;