gdi: Handle Nt stile \\.\DISPLAY1 name that we return. Fixes [Bug 2138]

Vitaliy Margolen wine-patch at kievinfo.com
Sat Mar 18 12:20:03 CST 2006


ChangeLog:
gdi: Handle Nt stile \\.\DISPLAY1 name that we return. Fixes [Bug 2138]
 dlls/gdi/driver.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)
-------------- next part --------------
4dda72afbdf1ae4f96bc85e5f972a700c2b74265
diff --git a/dlls/gdi/driver.c b/dlls/gdi/driver.c
index c9ac552..9f40a8d 100644
--- a/dlls/gdi/driver.c
+++ b/dlls/gdi/driver.c
@@ -365,11 +365,13 @@ BOOL DRIVER_GetDriverName( LPCWSTR devic
 {
     static const WCHAR displayW[] = { 'd','i','s','p','l','a','y',0 };
     static const WCHAR devicesW[] = { 'd','e','v','i','c','e','s',0 };
+    static const WCHAR display1W[] = {'\\','\\','.','\\','D','I','S','P','L','A','Y','1',0};
     static const WCHAR empty_strW[] = { 0 };
     WCHAR *p;
 
     /* display is a special case */
-    if (!strcmpiW( device, displayW ))
+    if (!strcmpiW( device, displayW ) ||
+        !strcmpiW( device, display1W ))
     {
         lstrcpynW( driver, displayW, size );
         return TRUE;


More information about the wine-patches mailing list