imaadp32.acm: Constify some variables.

This commit is contained in:
Andrew Talbot 2007-05-02 21:24:31 +01:00 committed by Alexandre Julliard
parent a22c7a6c34
commit cb66a66f16

View file

@ -93,7 +93,7 @@ static const Format ADPCM_Formats[] =
/***********************************************************************
* ADPCM_GetFormatIndex
*/
static DWORD ADPCM_GetFormatIndex(LPWAVEFORMATEX wfx)
static DWORD ADPCM_GetFormatIndex(const WAVEFORMATEX *wfx)
{
int i, hi;
const Format* fmts;
@ -773,7 +773,7 @@ static LRESULT ADPCM_StreamClose(PACMDRVSTREAMINSTANCE adsi)
* ADPCM_StreamSize
*
*/
static LRESULT ADPCM_StreamSize(PACMDRVSTREAMINSTANCE adsi, PACMDRVSTREAMSIZE adss)
static LRESULT ADPCM_StreamSize(const ACMDRVSTREAMINSTANCE *adsi, PACMDRVSTREAMSIZE adss)
{
switch (adss->fdwSize)
{