Module: wine Branch: master Commit: d73b27d80617a4eb451440b1caa5c9a3d8b0bf3e URL: http://source.winehq.org/git/wine.git/?a=commit;h=d73b27d80617a4eb451440b1ca...
Author: Gerald Pfeifer gerald@pfeifer.com Date: Sun May 22 20:55:35 2011 +0200
imaadp32.acm: Remove ADPCM_drvOpen which is only a stub.
---
dlls/imaadp32.acm/imaadp32.c | 10 +--------- 1 files changed, 1 insertions(+), 9 deletions(-)
diff --git a/dlls/imaadp32.acm/imaadp32.c b/dlls/imaadp32.acm/imaadp32.c index 4e59448..a315d06 100644 --- a/dlls/imaadp32.acm/imaadp32.c +++ b/dlls/imaadp32.acm/imaadp32.c @@ -38,14 +38,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(adpcm);
/*********************************************************************** - * ADPCM_drvOpen - */ -static LRESULT ADPCM_drvOpen(LPCSTR str) -{ - return 1; -} - -/*********************************************************************** * ADPCM_drvClose */ static LRESULT ADPCM_drvClose(DWORD_PTR dwDevID) @@ -928,7 +920,7 @@ LRESULT CALLBACK ADPCM_DriverProc(DWORD_PTR dwDevID, HDRVR hDriv, UINT wMsg, { case DRV_LOAD: return 1; case DRV_FREE: return 1; - case DRV_OPEN: return ADPCM_drvOpen((LPSTR)dwParam1); + case DRV_OPEN: return 1; case DRV_CLOSE: return ADPCM_drvClose(dwDevID); case DRV_ENABLE: return 1; case DRV_DISABLE: return 1;