imaadp32.acm: Remove ADPCM_drvOpen which is only a stub.

Gerald Pfeifer gerald at pfeifer.com
Sun May 22 13:55:35 CDT 2011


This mimicks what we have for the other cases, too.

Gerald

---
 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;
-- 
1.7.4.1



More information about the wine-patches mailing list