Module: wine Branch: master Commit: 231fa341353d0f4e19c057e845dbd12bb85aae1f URL: http://source.winehq.org/git/wine.git/?a=commit;h=231fa341353d0f4e19c057e845...
Author: Andrew Talbot Andrew.Talbot@talbotville.com Date: Mon May 28 18:11:40 2007 +0100
msg711.acm: Constify some variables.
---
dlls/msg711.acm/msg711.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/msg711.acm/msg711.c b/dlls/msg711.acm/msg711.c index b53524f..c540b05 100644 --- a/dlls/msg711.acm/msg711.c +++ b/dlls/msg711.acm/msg711.c @@ -94,7 +94,7 @@ static const Format ULaw_Formats[] = /*********************************************************************** * G711_GetFormatIndex */ -static DWORD G711_GetFormatIndex(LPWAVEFORMATEX wfx) +static DWORD G711_GetFormatIndex(const WAVEFORMATEX *wfx) { int i, hi; const Format* fmts; @@ -983,7 +983,7 @@ static LRESULT G711_StreamClose(PACMDRVSTREAMINSTANCE adsi) * G711_StreamSize * */ -static LRESULT G711_StreamSize(PACMDRVSTREAMINSTANCE adsi, PACMDRVSTREAMSIZE adss) +static LRESULT G711_StreamSize(const ACMDRVSTREAMINSTANCE *adsi, PACMDRVSTREAMSIZE adss) { switch (adss->fdwSize) {