Eric Pouech : msvfw32: Remove 16bit driver references ( now that they no longer exist in winmm).

Alexandre Julliard julliard at winehq.org
Mon Oct 26 10:08:31 CDT 2009


Module: wine
Branch: master
Commit: 70d43eb0477d18a78deecbc53fab661e609c0186
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=70d43eb0477d18a78deecbc53fab661e609c0186

Author: Eric Pouech <eric.pouech at orange.fr>
Date:   Fri Oct 23 20:59:32 2009 +0200

msvfw32: Remove 16bit driver references (now that they no longer exist in winmm).

---

 dlls/msvfw32/msvideo_main.c |    8 --------
 1 files changed, 0 insertions(+), 8 deletions(-)

diff --git a/dlls/msvfw32/msvideo_main.c b/dlls/msvfw32/msvideo_main.c
index 5217c58..ae8d6d2 100644
--- a/dlls/msvfw32/msvideo_main.c
+++ b/dlls/msvfw32/msvideo_main.c
@@ -394,7 +394,6 @@ HIC VFWAPI ICOpen(DWORD fccType, DWORD fccHandler, UINT wMode)
     ICOPEN		icopen;
     HDRVR		hdrv;
     WINE_HIC*           whic;
-    BOOL                bIs16;
     static const WCHAR  drv32W[] = {'d','r','i','v','e','r','s','3','2','\0'};
     reg_driver*         driver;
 
@@ -442,14 +441,7 @@ HIC VFWAPI ICOpen(DWORD fccType, DWORD fccHandler, UINT wMode)
         if (!hdrv) 
             return 0; 
     }
-    bIs16 = GetDriverFlags(hdrv) & 0x10000000; /* undocumented flag: WINE_GDF_16BIT */
 
-    if (bIs16)
-    {
-        FIXME("Got a 16 bit driver, but no 16 bit support in msvfw\n");
-        CloseDriver(hdrv, 0, 0);
-        return 0;
-    }
     whic = HeapAlloc(GetProcessHeap(), 0, sizeof(WINE_HIC));
     if (!whic)
     {




More information about the wine-cvs mailing list