Commit cb66a66f authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

imaadp32.acm: Constify some variables.

parent a22c7a6c
......@@ -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)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment