Module: wine Branch: master Commit: 39e6c8c9b67adf955578294cd17ee89c30c83aeb URL: http://source.winehq.org/git/wine.git/?a=commit;h=39e6c8c9b67adf955578294cd1... Author: Andrew Talbot <Andrew.Talbot(a)talbotville.com> Date: Wed Jan 10 15:21:06 2007 +0000 imaadp32.acm: Remove unused function. --- dlls/imaadp32.acm/imaadp32.c | 11 ----------- 1 files changed, 0 insertions(+), 11 deletions(-) diff --git a/dlls/imaadp32.acm/imaadp32.c b/dlls/imaadp32.acm/imaadp32.c index 180c664..a5f2493 100644 --- a/dlls/imaadp32.acm/imaadp32.c +++ b/dlls/imaadp32.acm/imaadp32.c @@ -770,17 +770,6 @@ static LRESULT ADPCM_StreamClose(PACMDRV } /*********************************************************************** - * ADPCM_round - * - */ -static inline DWORD ADPCM_round(DWORD a, DWORD b, DWORD c) -{ - assert(a && b && c); - /* to be sure, always return an entire number of c... */ - return ((double)a * (double)b + (double)c - 1) / (double)c; -} - -/*********************************************************************** * ADPCM_StreamSize * */