Commit 231fa341 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

msg711.acm: Constify some variables.

parent 9312f0f9
...@@ -94,7 +94,7 @@ static const Format ULaw_Formats[] = ...@@ -94,7 +94,7 @@ static const Format ULaw_Formats[] =
/*********************************************************************** /***********************************************************************
* G711_GetFormatIndex * G711_GetFormatIndex
*/ */
static DWORD G711_GetFormatIndex(LPWAVEFORMATEX wfx) static DWORD G711_GetFormatIndex(const WAVEFORMATEX *wfx)
{ {
int i, hi; int i, hi;
const Format* fmts; const Format* fmts;
...@@ -983,7 +983,7 @@ static LRESULT G711_StreamClose(PACMDRVSTREAMINSTANCE adsi) ...@@ -983,7 +983,7 @@ static LRESULT G711_StreamClose(PACMDRVSTREAMINSTANCE adsi)
* G711_StreamSize * G711_StreamSize
* *
*/ */
static LRESULT G711_StreamSize(PACMDRVSTREAMINSTANCE adsi, PACMDRVSTREAMSIZE adss) static LRESULT G711_StreamSize(const ACMDRVSTREAMINSTANCE *adsi, PACMDRVSTREAMSIZE adss)
{ {
switch (adss->fdwSize) 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