Affected Files dlls/winmm/wineaudioio/audio.c Changelog: Fixed type mismatch in widDsCreate
Index: dlls/winmm/wineaudioio/audio.c =================================================================== RCS file: /home/wine/wine/dlls/winmm/wineaudioio/audio.c,v retrieving revision 1.9 diff -u -3 -p -b -r1.9 audio.c --- dlls/winmm/wineaudioio/audio.c 6 Jan 2004 22:08:33 -0000 1.9 +++ dlls/winmm/wineaudioio/audio.c 8 Jan 2004 04:47:40 -0000 @@ -589,7 +589,7 @@ static void wodPlayer_Reset(WINE_WAVEOUT /* flush all possible output */ /* *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 * but this approach seems to work OK */ @@ -2297,7 +2297,7 @@ DWORD WINAPI LIBAUDIOIO_widMessage(WORD /*======================================================================* * 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 interface with arts like we do with oss */ @@ -2314,7 +2314,7 @@ static DWORD widDsDesc(UINT wDevID, PDSD return MMSYSERR_NOERROR; } -static DWORD wodDsGuid(UINT wDevID, LPGUID pGuid) +static DWORD widDsGuid(UINT wDevID, LPGUID pGuid) { memcpy(pGuid, &DSDEVID_DefaultCapture, sizeof(GUID)); return MMSYSERR_NOERROR;