mshtml: Implement IHTMLDOMNode previousSibling.
[wine] / dlls / gdi32 / driver.c
1 /*
2  * Graphics driver management functions
3  *
4  * Copyright 1994 Bob Amstadt
5  * Copyright 1996, 2001 Alexandre Julliard
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22 #include "config.h"
23 #include "wine/port.h"
24
25 #include <assert.h>
26 #include <stdarg.h>
27 #include <string.h>
28 #include <stdio.h>
29 #include "windef.h"
30 #include "winbase.h"
31 #include "winreg.h"
32 #include "ddrawgdi.h"
33 #include "wine/winbase16.h"
34
35 #include "gdi_private.h"
36 #include "wine/unicode.h"
37 #include "wine/list.h"
38 #include "wine/debug.h"
39
40 WINE_DEFAULT_DEBUG_CHANNEL(driver);
41
42 struct graphics_driver
43 {
44     struct list             entry;
45     HMODULE                 module;  /* module handle */
46     DC_FUNCTIONS            funcs;
47 };
48
49 static struct list drivers = LIST_INIT( drivers );
50 static struct graphics_driver *display_driver;
51
52 static CRITICAL_SECTION driver_section;
53 static CRITICAL_SECTION_DEBUG critsect_debug =
54 {
55     0, 0, &driver_section,
56     { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
57       0, 0, { (DWORD_PTR)(__FILE__ ": driver_section") }
58 };
59 static CRITICAL_SECTION driver_section = { &critsect_debug, -1, 0, 0, 0, 0 };
60
61 /**********************************************************************
62  *           create_driver
63  *
64  * Allocate and fill the driver structure for a given module.
65  */
66 static struct graphics_driver *create_driver( HMODULE module )
67 {
68     struct graphics_driver *driver;
69
70     if (!(driver = HeapAlloc( GetProcessHeap(), 0, sizeof(*driver)))) return NULL;
71     driver->module = module;
72
73     /* fill the function table */
74     if (module)
75     {
76 #define GET_FUNC(name) driver->funcs.p##name = (void*)GetProcAddress( module, #name )
77         GET_FUNC(AbortDoc);
78         GET_FUNC(AbortPath);
79         GET_FUNC(AlphaBlend);
80         GET_FUNC(AngleArc);
81         GET_FUNC(Arc);
82         GET_FUNC(ArcTo);
83         GET_FUNC(BeginPath);
84         GET_FUNC(ChoosePixelFormat);
85         GET_FUNC(Chord);
86         GET_FUNC(CloseFigure);
87         GET_FUNC(CreateBitmap);
88         GET_FUNC(CreateDC);
89         GET_FUNC(CreateDIBSection);
90         GET_FUNC(DeleteBitmap);
91         GET_FUNC(DeleteDC);
92         GET_FUNC(DescribePixelFormat);
93         GET_FUNC(DeviceCapabilities);
94         GET_FUNC(Ellipse);
95         GET_FUNC(EndDoc);
96         GET_FUNC(EndPage);
97         GET_FUNC(EndPath);
98         GET_FUNC(EnumDeviceFonts);
99         GET_FUNC(EnumICMProfiles);
100         GET_FUNC(ExcludeClipRect);
101         GET_FUNC(ExtDeviceMode);
102         GET_FUNC(ExtEscape);
103         GET_FUNC(ExtFloodFill);
104         GET_FUNC(ExtSelectClipRgn);
105         GET_FUNC(ExtTextOut);
106         GET_FUNC(FillPath);
107         GET_FUNC(FillRgn);
108         GET_FUNC(FlattenPath);
109         GET_FUNC(FrameRgn);
110         GET_FUNC(GdiComment);
111         GET_FUNC(GetBitmapBits);
112         GET_FUNC(GetCharWidth);
113         GET_FUNC(GetDIBits);
114         GET_FUNC(GetDeviceCaps);
115         GET_FUNC(GetDeviceGammaRamp);
116         GET_FUNC(GetICMProfile);
117         GET_FUNC(GetNearestColor);
118         GET_FUNC(GetPixel);
119         GET_FUNC(GetPixelFormat);
120         GET_FUNC(GetSystemPaletteEntries);
121         GET_FUNC(GetTextExtentExPoint);
122         GET_FUNC(GetTextMetrics);
123         GET_FUNC(IntersectClipRect);
124         GET_FUNC(InvertRgn);
125         GET_FUNC(LineTo);
126         GET_FUNC(MoveTo);
127         GET_FUNC(ModifyWorldTransform);
128         GET_FUNC(OffsetClipRgn);
129         GET_FUNC(OffsetViewportOrgEx);
130         GET_FUNC(OffsetWindowOrgEx);
131         GET_FUNC(PaintRgn);
132         GET_FUNC(PatBlt);
133         GET_FUNC(Pie);
134         GET_FUNC(PolyBezier);
135         GET_FUNC(PolyBezierTo);
136         GET_FUNC(PolyDraw);
137         GET_FUNC(PolyPolygon);
138         GET_FUNC(PolyPolyline);
139         GET_FUNC(Polygon);
140         GET_FUNC(Polyline);
141         GET_FUNC(PolylineTo);
142         GET_FUNC(RealizeDefaultPalette);
143         GET_FUNC(RealizePalette);
144         GET_FUNC(Rectangle);
145         GET_FUNC(ResetDC);
146         GET_FUNC(RestoreDC);
147         GET_FUNC(RoundRect);
148         GET_FUNC(SaveDC);
149         GET_FUNC(ScaleViewportExtEx);
150         GET_FUNC(ScaleWindowExtEx);
151         GET_FUNC(SelectBitmap);
152         GET_FUNC(SelectBrush);
153         GET_FUNC(SelectClipPath);
154         GET_FUNC(SelectFont);
155         GET_FUNC(SelectPalette);
156         GET_FUNC(SelectPen);
157         GET_FUNC(SetArcDirection);
158         GET_FUNC(SetBitmapBits);
159         GET_FUNC(SetBkColor);
160         GET_FUNC(SetBkMode);
161         GET_FUNC(SetDCBrushColor);
162         GET_FUNC(SetDCPenColor);
163         GET_FUNC(SetDIBColorTable);
164         GET_FUNC(SetDIBits);
165         GET_FUNC(SetDIBitsToDevice);
166         GET_FUNC(SetDeviceClipping);
167         GET_FUNC(SetDeviceGammaRamp);
168         GET_FUNC(SetMapMode);
169         GET_FUNC(SetMapperFlags);
170         GET_FUNC(SetPixel);
171         GET_FUNC(SetPixelFormat);
172         GET_FUNC(SetPolyFillMode);
173         GET_FUNC(SetROP2);
174         GET_FUNC(SetRelAbs);
175         GET_FUNC(SetStretchBltMode);
176         GET_FUNC(SetTextAlign);
177         GET_FUNC(SetTextCharacterExtra);
178         GET_FUNC(SetTextColor);
179         GET_FUNC(SetTextJustification);
180         GET_FUNC(SetViewportExtEx);
181         GET_FUNC(SetViewportOrgEx);
182         GET_FUNC(SetWindowExtEx);
183         GET_FUNC(SetWindowOrgEx);
184         GET_FUNC(SetWorldTransform);
185         GET_FUNC(StartDoc);
186         GET_FUNC(StartPage);
187         GET_FUNC(StretchBlt);
188         GET_FUNC(StretchDIBits);
189         GET_FUNC(StrokeAndFillPath);
190         GET_FUNC(StrokePath);
191         GET_FUNC(SwapBuffers);
192         GET_FUNC(UnrealizePalette);
193         GET_FUNC(WidenPath);
194
195         /* OpenGL32 */
196         GET_FUNC(wglCreateContext);
197         GET_FUNC(wglCreateContextAttribsARB);
198         GET_FUNC(wglDeleteContext);
199         GET_FUNC(wglGetProcAddress);
200         GET_FUNC(wglGetPbufferDCARB);
201         GET_FUNC(wglMakeContextCurrentARB);
202         GET_FUNC(wglMakeCurrent);
203         GET_FUNC(wglSetPixelFormatWINE);
204         GET_FUNC(wglShareLists);
205         GET_FUNC(wglUseFontBitmapsA);
206         GET_FUNC(wglUseFontBitmapsW);
207 #undef GET_FUNC
208     }
209     else memset( &driver->funcs, 0, sizeof(driver->funcs) );
210
211     return driver;
212 }
213
214
215 /**********************************************************************
216  *           DRIVER_get_display_driver
217  *
218  * Special case for loading the display driver: get the name from the config file
219  */
220 const DC_FUNCTIONS *DRIVER_get_display_driver(void)
221 {
222     struct graphics_driver *driver;
223     char buffer[MAX_PATH], libname[32], *name, *next;
224     HMODULE module = 0;
225     HKEY hkey;
226
227     if (display_driver) return &display_driver->funcs;  /* already loaded */
228
229     strcpy( buffer, "x11" );  /* default value */
230     /* @@ Wine registry key: HKCU\Software\Wine\Drivers */
231     if (!RegOpenKeyA( HKEY_CURRENT_USER, "Software\\Wine\\Drivers", &hkey ))
232     {
233         DWORD type, count = sizeof(buffer);
234         RegQueryValueExA( hkey, "Graphics", 0, &type, (LPBYTE) buffer, &count );
235         RegCloseKey( hkey );
236     }
237
238     name = buffer;
239     while (name)
240     {
241         next = strchr( name, ',' );
242         if (next) *next++ = 0;
243
244         snprintf( libname, sizeof(libname), "wine%s.drv", name );
245         if ((module = LoadLibraryA( libname )) != 0) break;
246         name = next;
247     }
248
249     if (!(driver = create_driver( module )))
250     {
251         MESSAGE( "Could not create graphics driver '%s'\n", buffer );
252         FreeLibrary( module );
253         ExitProcess(1);
254     }
255     if (InterlockedCompareExchangePointer( (void **)&display_driver, driver, NULL ))
256     {
257         /* somebody beat us to it */
258         FreeLibrary( driver->module );
259         HeapFree( GetProcessHeap(), 0, driver );
260     }
261     return &display_driver->funcs;
262 }
263
264
265 /**********************************************************************
266  *           DRIVER_load_driver
267  */
268 const DC_FUNCTIONS *DRIVER_load_driver( LPCWSTR name )
269 {
270     HMODULE module;
271     struct graphics_driver *driver, *new_driver;
272     static const WCHAR displayW[] = { 'd','i','s','p','l','a','y',0 };
273     static const WCHAR display1W[] = {'\\','\\','.','\\','D','I','S','P','L','A','Y','1',0};
274
275     /* display driver is a special case */
276     if (!strcmpiW( name, displayW ) || !strcmpiW( name, display1W )) return DRIVER_get_display_driver();
277
278     if ((module = GetModuleHandleW( name )))
279     {
280         if (display_driver && display_driver->module == module) return &display_driver->funcs;
281         EnterCriticalSection( &driver_section );
282         LIST_FOR_EACH_ENTRY( driver, &drivers, struct graphics_driver, entry )
283         {
284             if (driver->module == module) goto done;
285         }
286         LeaveCriticalSection( &driver_section );
287     }
288
289     if (!(module = LoadLibraryW( name ))) return NULL;
290
291     if (!(new_driver = create_driver( module )))
292     {
293         FreeLibrary( module );
294         return NULL;
295     }
296
297     /* check if someone else added it in the meantime */
298     EnterCriticalSection( &driver_section );
299     LIST_FOR_EACH_ENTRY( driver, &drivers, struct graphics_driver, entry )
300     {
301         if (driver->module != module) continue;
302         FreeLibrary( module );
303         HeapFree( GetProcessHeap(), 0, new_driver );
304         goto done;
305     }
306     driver = new_driver;
307     list_add_head( &drivers, &driver->entry );
308     TRACE( "loaded driver %p for %s\n", driver, debugstr_w(name) );
309 done:
310     LeaveCriticalSection( &driver_section );
311     return &driver->funcs;
312 }
313
314
315 static INT CDECL nulldrv_AbortDoc( PHYSDEV dev )
316 {
317     return 0;
318 }
319
320 static BOOL CDECL nulldrv_Arc( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
321                                INT xstart, INT ystart, INT xend, INT yend )
322 {
323     return TRUE;
324 }
325
326 static INT CDECL nulldrv_ChoosePixelFormat( PHYSDEV dev, const PIXELFORMATDESCRIPTOR *descr )
327 {
328     return 0;
329 }
330
331 static BOOL CDECL nulldrv_Chord( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
332                                  INT xstart, INT ystart, INT xend, INT yend )
333 {
334     return TRUE;
335 }
336
337 static BOOL CDECL nulldrv_CreateBitmap( PHYSDEV dev, HBITMAP bitmap, LPVOID bits )
338 {
339     return TRUE;
340 }
341
342 static BOOL CDECL nulldrv_CreateDC( HDC hdc, PHYSDEV *dev, LPCWSTR driver, LPCWSTR device,
343                                     LPCWSTR output, const DEVMODEW *devmode )
344 {
345     assert(0);  /* should never be called */
346     return FALSE;
347 }
348
349 static HBITMAP CDECL nulldrv_CreateDIBSection( PHYSDEV dev, HBITMAP bitmap,
350                                                const BITMAPINFO *info, UINT usage )
351 {
352     return bitmap;
353 }
354
355 static BOOL CDECL nulldrv_DeleteBitmap( HBITMAP bitmap )
356 {
357     return TRUE;
358 }
359
360 static BOOL CDECL nulldrv_DeleteDC( PHYSDEV dev )
361 {
362     assert(0);  /* should never be called */
363     return TRUE;
364 }
365
366 static BOOL CDECL nulldrv_DeleteObject( PHYSDEV dev, HGDIOBJ obj )
367 {
368     return TRUE;
369 }
370
371 static INT CDECL nulldrv_DescribePixelFormat( PHYSDEV dev, INT format,
372                                               UINT size, PIXELFORMATDESCRIPTOR * descr )
373 {
374     return 0;
375 }
376
377 static DWORD CDECL nulldrv_DeviceCapabilities( LPSTR buffer, LPCSTR device, LPCSTR port,
378                                                WORD cap, LPSTR output, DEVMODEA *devmode )
379 {
380     return -1;
381 }
382
383 static BOOL CDECL nulldrv_Ellipse( PHYSDEV dev, INT left, INT top, INT right, INT bottom )
384 {
385     return TRUE;
386 }
387
388 static INT CDECL nulldrv_EndDoc( PHYSDEV dev )
389 {
390     return 0;
391 }
392
393 static INT CDECL nulldrv_EndPage( PHYSDEV dev )
394 {
395     return 0;
396 }
397
398 static BOOL CDECL nulldrv_EnumDeviceFonts( PHYSDEV dev, LOGFONTW *logfont,
399                                            FONTENUMPROCW proc, LPARAM lParam )
400 {
401     return FALSE;
402 }
403
404 static INT CDECL nulldrv_EnumICMProfiles( PHYSDEV dev, ICMENUMPROCW func, LPARAM lparam )
405 {
406     return -1;
407 }
408
409 static INT CDECL nulldrv_ExtDeviceMode( LPSTR buffer, HWND hwnd, DEVMODEA *output, LPSTR device,
410                                         LPSTR port, DEVMODEA *input, LPSTR profile, DWORD mode )
411 {
412     return -1;
413 }
414
415 static INT CDECL nulldrv_ExtEscape( PHYSDEV dev, INT escape, INT in_size, const void *in_data,
416                                     INT out_size, void *out_data )
417 {
418     return 0;
419 }
420
421 static BOOL CDECL nulldrv_ExtFloodFill( PHYSDEV dev, INT x, INT y, COLORREF color, UINT type )
422 {
423     return TRUE;
424 }
425
426 static BOOL CDECL nulldrv_ExtTextOut( PHYSDEV dev, INT x, INT y, UINT flags, const RECT *rect,
427                                       LPCWSTR str, UINT count, const INT *dx )
428 {
429     return TRUE;
430 }
431
432 static BOOL CDECL nulldrv_GdiComment( PHYSDEV dev, UINT size, const BYTE *data )
433 {
434     return FALSE;
435 }
436
437 static BOOL CDECL nulldrv_GetCharWidth( PHYSDEV dev, UINT first, UINT last, INT *buffer )
438 {
439     return FALSE;
440 }
441
442 static INT CDECL nulldrv_GetDeviceCaps( PHYSDEV dev, INT cap )
443 {
444     switch (cap)  /* return meaningful values for some entries */
445     {
446     case HORZRES:     return 640;
447     case VERTRES:     return 480;
448     case BITSPIXEL:   return 1;
449     case PLANES:      return 1;
450     case NUMCOLORS:   return 2;
451     case ASPECTX:     return 36;
452     case ASPECTY:     return 36;
453     case ASPECTXY:    return 51;
454     case LOGPIXELSX:  return 72;
455     case LOGPIXELSY:  return 72;
456     case SIZEPALETTE: return 2;
457     case TEXTCAPS:    return (TC_OP_CHARACTER | TC_OP_STROKE | TC_CP_STROKE |
458                               TC_CR_ANY | TC_SF_X_YINDEP | TC_SA_DOUBLE | TC_SA_INTEGER |
459                               TC_SA_CONTIN | TC_UA_ABLE | TC_SO_ABLE | TC_RA_ABLE | TC_VA_ABLE);
460     default:          return 0;
461     }
462 }
463
464 static BOOL CDECL nulldrv_GetDeviceGammaRamp( PHYSDEV dev, void *ramp )
465 {
466     return FALSE;
467 }
468
469 static BOOL CDECL nulldrv_GetICMProfile( PHYSDEV dev, LPDWORD size, LPWSTR filename )
470 {
471     return FALSE;
472 }
473
474 static COLORREF CDECL nulldrv_GetPixel( PHYSDEV dev, INT x, INT y )
475 {
476     return 0;
477 }
478
479 static INT CDECL nulldrv_GetPixelFormat( PHYSDEV dev )
480 {
481     return 0;
482 }
483
484 static UINT CDECL nulldrv_GetSystemPaletteEntries( PHYSDEV dev, UINT start,
485                                                    UINT count, PALETTEENTRY *entries )
486 {
487     return 0;
488 }
489
490 static BOOL CDECL nulldrv_GetTextExtentExPoint( PHYSDEV dev, LPCWSTR str, INT count, INT max_ext,
491                                                 INT *fit, INT *dx, SIZE *size )
492 {
493     return FALSE;
494 }
495
496 static BOOL CDECL nulldrv_GetTextMetrics( PHYSDEV dev, TEXTMETRICW *metrics )
497 {
498     return FALSE;
499 }
500
501 static BOOL CDECL nulldrv_LineTo( PHYSDEV dev, INT x, INT y )
502 {
503     return TRUE;
504 }
505
506 static BOOL CDECL nulldrv_MoveTo( PHYSDEV dev, INT x, INT y )
507 {
508     return TRUE;
509 }
510
511 static BOOL CDECL nulldrv_PaintRgn( PHYSDEV dev, HRGN rgn )
512 {
513     return TRUE;
514 }
515
516 static BOOL CDECL nulldrv_PatBlt( PHYSDEV dev, INT x, INT y, INT width, INT height, DWORD rop )
517 {
518     return TRUE;
519 }
520
521 static BOOL CDECL nulldrv_Pie( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
522                                INT xstart, INT ystart, INT xend, INT yend )
523 {
524     return TRUE;
525 }
526
527 static BOOL CDECL nulldrv_PolyPolygon( PHYSDEV dev, const POINT *points, const INT *counts, UINT polygons )
528 {
529     /* FIXME: could be implemented with Polygon */
530     return TRUE;
531 }
532
533 static BOOL CDECL nulldrv_PolyPolyline( PHYSDEV dev, const POINT *points, const DWORD *counts, DWORD lines )
534 {
535     /* FIXME: could be implemented with Polyline */
536     return TRUE;
537 }
538
539 static BOOL CDECL nulldrv_Polygon( PHYSDEV dev, const POINT *points, INT count )
540 {
541     return TRUE;
542 }
543
544 static BOOL CDECL nulldrv_Polyline( PHYSDEV dev, const POINT *points, INT count )
545 {
546     return TRUE;
547 }
548
549 static UINT CDECL nulldrv_RealizeDefaultPalette( PHYSDEV dev )
550 {
551     return 0;
552 }
553
554 static UINT CDECL nulldrv_RealizePalette( PHYSDEV dev, HPALETTE palette, BOOL primary )
555 {
556     return 0;
557 }
558
559 static BOOL CDECL nulldrv_Rectangle( PHYSDEV dev, INT left, INT top, INT right, INT bottom )
560 {
561     return TRUE;
562 }
563
564 static HDC CDECL nulldrv_ResetDC( PHYSDEV dev, const DEVMODEW *devmode )
565 {
566     return 0;
567 }
568
569 static BOOL CDECL nulldrv_RoundRect( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
570                                      INT ell_width, INT ell_height )
571 {
572     return TRUE;
573 }
574
575 static HBITMAP CDECL nulldrv_SelectBitmap( PHYSDEV dev, HBITMAP bitmap )
576 {
577     return bitmap;
578 }
579
580 static HBRUSH CDECL nulldrv_SelectBrush( PHYSDEV dev, HBRUSH brush )
581 {
582     return brush;
583 }
584
585 static HFONT CDECL nulldrv_SelectFont( PHYSDEV dev, HFONT font, HANDLE gdi_font )
586 {
587     return 0;
588 }
589
590 static HPALETTE CDECL nulldrv_SelectPalette( PHYSDEV dev, HPALETTE palette, BOOL bkgnd )
591 {
592     return palette;
593 }
594
595 static HPEN CDECL nulldrv_SelectPen( PHYSDEV dev, HPEN pen )
596 {
597     return pen;
598 }
599
600 static INT CDECL nulldrv_SetArcDirection( PHYSDEV dev, INT dir )
601 {
602     return dir;
603 }
604
605 static COLORREF CDECL nulldrv_SetBkColor( PHYSDEV dev, COLORREF color )
606 {
607     return color;
608 }
609
610 static INT CDECL nulldrv_SetBkMode( PHYSDEV dev, INT mode )
611 {
612     return mode;
613 }
614
615 static COLORREF CDECL nulldrv_SetDCBrushColor( PHYSDEV dev, COLORREF color )
616 {
617     return color;
618 }
619
620 static COLORREF CDECL nulldrv_SetDCPenColor( PHYSDEV dev, COLORREF color )
621 {
622     return color;
623 }
624
625 static UINT CDECL nulldrv_SetDIBColorTable( PHYSDEV dev, UINT pos, UINT count, const RGBQUAD *colors )
626 {
627     return 0;
628 }
629
630 static INT CDECL nulldrv_SetDIBitsToDevice( PHYSDEV dev, INT x_dst, INT y_dst, DWORD width, DWORD height,
631                                             INT x_src, INT y_src, UINT start, UINT lines,
632                                             const void *bits, const BITMAPINFO *info, UINT coloruse )
633 {
634     return 0;
635 }
636
637 static void CDECL nulldrv_SetDeviceClipping( PHYSDEV dev, HRGN vis_rgn, HRGN clip_rgn )
638 {
639 }
640
641 static DWORD CDECL nulldrv_SetLayout( PHYSDEV dev, DWORD layout )
642 {
643     return layout;
644 }
645
646 static BOOL CDECL nulldrv_SetDeviceGammaRamp( PHYSDEV dev, void *ramp )
647 {
648     return FALSE;
649 }
650
651 static DWORD CDECL nulldrv_SetMapperFlags( PHYSDEV dev, DWORD flags )
652 {
653     return flags;
654 }
655
656 static COLORREF CDECL nulldrv_SetPixel( PHYSDEV dev, INT x, INT y, COLORREF color )
657 {
658     return color;
659 }
660
661 static BOOL CDECL nulldrv_SetPixelFormat( PHYSDEV dev, INT format, const PIXELFORMATDESCRIPTOR *descr )
662 {
663     return FALSE;
664 }
665
666 static INT CDECL nulldrv_SetPolyFillMode( PHYSDEV dev, INT mode )
667 {
668     return mode;
669 }
670
671 static INT CDECL nulldrv_SetROP2( PHYSDEV dev, INT rop )
672 {
673     return rop;
674 }
675
676 static INT CDECL nulldrv_SetRelAbs( PHYSDEV dev, INT mode )
677 {
678     return mode;
679 }
680
681 static INT CDECL nulldrv_SetStretchBltMode( PHYSDEV dev, INT mode )
682 {
683     return mode;
684 }
685
686 static UINT CDECL nulldrv_SetTextAlign( PHYSDEV dev, UINT align )
687 {
688     return align;
689 }
690
691 static INT CDECL nulldrv_SetTextCharacterExtra( PHYSDEV dev, INT extra )
692 {
693     return extra;
694 }
695
696 static COLORREF CDECL nulldrv_SetTextColor( PHYSDEV dev, COLORREF color )
697 {
698     return color;
699 }
700
701 static BOOL CDECL nulldrv_SetTextJustification( PHYSDEV dev, INT extra, INT breaks )
702 {
703     return TRUE;
704 }
705
706 static INT CDECL nulldrv_StartDoc( PHYSDEV dev, const DOCINFOW *info )
707 {
708     return 0;
709 }
710
711 static INT CDECL nulldrv_StartPage( PHYSDEV dev )
712 {
713     return 1;
714 }
715
716 static BOOL CDECL nulldrv_SwapBuffers( PHYSDEV dev )
717 {
718     return TRUE;
719 }
720
721 static BOOL CDECL nulldrv_UnrealizePalette( HPALETTE palette )
722 {
723     return FALSE;
724 }
725
726 static BOOL CDECL nulldrv_wglCopyContext( HGLRC ctx_src, HGLRC ctx_dst, UINT mask )
727 {
728     return FALSE;
729 }
730
731 static HGLRC CDECL nulldrv_wglCreateContext( PHYSDEV dev )
732 {
733     return 0;
734 }
735
736 static HGLRC CDECL nulldrv_wglCreateContextAttribsARB( PHYSDEV dev, HGLRC share_ctx, const int *attribs )
737 {
738     return 0;
739 }
740
741 static BOOL CDECL nulldrv_wglDeleteContext( HGLRC ctx )
742 {
743     return FALSE;
744 }
745
746 static PROC CDECL nulldrv_wglGetProcAddress( LPCSTR name )
747 {
748     return NULL;
749 }
750
751 static HDC CDECL nulldrv_wglGetPbufferDCARB( PHYSDEV dev, void *pbuffer )
752 {
753     return 0;
754 }
755
756 static BOOL CDECL nulldrv_wglMakeCurrent( PHYSDEV dev, HGLRC ctx )
757 {
758     return FALSE;
759 }
760
761 static BOOL CDECL nulldrv_wglMakeContextCurrentARB( PHYSDEV dev_draw, PHYSDEV dev_read, HGLRC ctx )
762 {
763     return FALSE;
764 }
765
766 static BOOL CDECL nulldrv_wglSetPixelFormatWINE( PHYSDEV dev, INT format,
767                                                  const PIXELFORMATDESCRIPTOR *descr )
768 {
769     return FALSE;
770 }
771
772 static BOOL CDECL nulldrv_wglShareLists( HGLRC ctx1, HGLRC ctx2 )
773 {
774     return FALSE;
775 }
776
777 static BOOL CDECL nulldrv_wglUseFontBitmapsA( PHYSDEV dev, DWORD start, DWORD count, DWORD base )
778 {
779     return FALSE;
780 }
781
782 static BOOL CDECL nulldrv_wglUseFontBitmapsW( PHYSDEV dev, DWORD start, DWORD count, DWORD base )
783 {
784     return FALSE;
785 }
786
787 const DC_FUNCTIONS null_driver =
788 {
789     nulldrv_AbortDoc,                   /* pAbortDoc */
790     nulldrv_AbortPath,                  /* pAbortPath */
791     NULL,                               /* pAlphaBlend */
792     nulldrv_AngleArc,                   /* pAngleArc */
793     nulldrv_Arc,                        /* pArc */
794     nulldrv_ArcTo,                      /* pArcTo */
795     nulldrv_BeginPath,                  /* pBeginPath */
796     nulldrv_ChoosePixelFormat,          /* pChoosePixelFormat */
797     nulldrv_Chord,                      /* pChord */
798     nulldrv_CloseFigure,                /* pCloseFigure */
799     nulldrv_CreateBitmap,               /* pCreateBitmap */
800     nulldrv_CreateDC,                   /* pCreateDC */
801     nulldrv_CreateDIBSection,           /* pCreateDIBSection */
802     nulldrv_DeleteBitmap,               /* pDeleteBitmap */
803     nulldrv_DeleteDC,                   /* pDeleteDC */
804     nulldrv_DeleteObject,               /* pDeleteObject */
805     nulldrv_DescribePixelFormat,        /* pDescribePixelFormat */
806     nulldrv_DeviceCapabilities,         /* pDeviceCapabilities */
807     nulldrv_Ellipse,                    /* pEllipse */
808     nulldrv_EndDoc,                     /* pEndDoc */
809     nulldrv_EndPage,                    /* pEndPage */
810     nulldrv_EndPath,                    /* pEndPath */
811     nulldrv_EnumDeviceFonts,            /* pEnumDeviceFonts */
812     nulldrv_EnumICMProfiles,            /* pEnumICMProfiles */
813     nulldrv_ExcludeClipRect,            /* pExcludeClipRect */
814     nulldrv_ExtDeviceMode,              /* pExtDeviceMode */
815     nulldrv_ExtEscape,                  /* pExtEscape */
816     nulldrv_ExtFloodFill,               /* pExtFloodFill */
817     nulldrv_ExtSelectClipRgn,           /* pExtSelectClipRgn */
818     nulldrv_ExtTextOut,                 /* pExtTextOut */
819     nulldrv_FillPath,                   /* pFillPath */
820     nulldrv_FillRgn,                    /* pFillRgn */
821     nulldrv_FlattenPath,                /* pFlattenPath */
822     nulldrv_FrameRgn,                   /* pFrameRgn */
823     nulldrv_GdiComment,                 /* pGdiComment */
824     nulldrv_GetBitmapBits,              /* pGetBitmapBits */
825     nulldrv_GetCharWidth,               /* pGetCharWidth */
826     nulldrv_GetDIBits,                  /* pGetDIBits */
827     nulldrv_GetDeviceCaps,              /* pGetDeviceCaps */
828     nulldrv_GetDeviceGammaRamp,         /* pGetDeviceGammaRamp */
829     nulldrv_GetICMProfile,              /* pGetICMProfile */
830     nulldrv_GetNearestColor,            /* pGetNearestColor */
831     nulldrv_GetPixel,                   /* pGetPixel */
832     nulldrv_GetPixelFormat,             /* pGetPixelFormat */
833     nulldrv_GetSystemPaletteEntries,    /* pGetSystemPaletteEntries */
834     nulldrv_GetTextExtentExPoint,       /* pGetTextExtentExPoint */
835     nulldrv_GetTextMetrics,             /* pGetTextMetrics */
836     nulldrv_IntersectClipRect,          /* pIntersectClipRect */
837     nulldrv_InvertRgn,                  /* pInvertRgn */
838     nulldrv_LineTo,                     /* pLineTo */
839     nulldrv_ModifyWorldTransform,       /* pModifyWorldTransform */
840     nulldrv_MoveTo,                     /* pMoveTo */
841     nulldrv_OffsetClipRgn,              /* pOffsetClipRgn */
842     nulldrv_OffsetViewportOrgEx,        /* pOffsetViewportOrg */
843     nulldrv_OffsetWindowOrgEx,          /* pOffsetWindowOrg */
844     nulldrv_PaintRgn,                   /* pPaintRgn */
845     nulldrv_PatBlt,                     /* pPatBlt */
846     nulldrv_Pie,                        /* pPie */
847     nulldrv_PolyBezier,                 /* pPolyBezier */
848     nulldrv_PolyBezierTo,               /* pPolyBezierTo */
849     nulldrv_PolyDraw,                   /* pPolyDraw */
850     nulldrv_PolyPolygon,                /* pPolyPolygon */
851     nulldrv_PolyPolyline,               /* pPolyPolyline */
852     nulldrv_Polygon,                    /* pPolygon */
853     nulldrv_Polyline,                   /* pPolyline */
854     nulldrv_PolylineTo,                 /* pPolylineTo */
855     nulldrv_RealizeDefaultPalette,      /* pRealizeDefaultPalette */
856     nulldrv_RealizePalette,             /* pRealizePalette */
857     nulldrv_Rectangle,                  /* pRectangle */
858     nulldrv_ResetDC,                    /* pResetDC */
859     nulldrv_RestoreDC,                  /* pRestoreDC */
860     nulldrv_RoundRect,                  /* pRoundRect */
861     nulldrv_SaveDC,                     /* pSaveDC */
862     nulldrv_ScaleViewportExtEx,         /* pScaleViewportExt */
863     nulldrv_ScaleWindowExtEx,           /* pScaleWindowExt */
864     nulldrv_SelectBitmap,               /* pSelectBitmap */
865     nulldrv_SelectBrush,                /* pSelectBrush */
866     nulldrv_SelectClipPath,             /* pSelectClipPath */
867     nulldrv_SelectFont,                 /* pSelectFont */
868     nulldrv_SelectPalette,              /* pSelectPalette */
869     nulldrv_SelectPen,                  /* pSelectPen */
870     nulldrv_SetArcDirection,            /* pSetArcDirection */
871     nulldrv_SetBitmapBits,              /* pSetBitmapBits */
872     nulldrv_SetBkColor,                 /* pSetBkColor */
873     nulldrv_SetBkMode,                  /* pSetBkMode */
874     nulldrv_SetDCBrushColor,            /* pSetDCBrushColor */
875     nulldrv_SetDCPenColor,              /* pSetDCPenColor */
876     nulldrv_SetDIBColorTable,           /* pSetDIBColorTable */
877     nulldrv_SetDIBits,                  /* pSetDIBits */
878     nulldrv_SetDIBitsToDevice,          /* pSetDIBitsToDevice */
879     nulldrv_SetDeviceClipping,          /* pSetDeviceClipping */
880     nulldrv_SetDeviceGammaRamp,         /* pSetDeviceGammaRamp */
881     nulldrv_SetLayout,                  /* pSetLayout */
882     nulldrv_SetMapMode,                 /* pSetMapMode */
883     nulldrv_SetMapperFlags,             /* pSetMapperFlags */
884     nulldrv_SetPixel,                   /* pSetPixel */
885     nulldrv_SetPixelFormat,             /* pSetPixelFormat */
886     nulldrv_SetPolyFillMode,            /* pSetPolyFillMode */
887     nulldrv_SetROP2,                    /* pSetROP2 */
888     nulldrv_SetRelAbs,                  /* pSetRelAbs */
889     nulldrv_SetStretchBltMode,          /* pSetStretchBltMode */
890     nulldrv_SetTextAlign,               /* pSetTextAlign */
891     nulldrv_SetTextCharacterExtra,      /* pSetTextCharacterExtra */
892     nulldrv_SetTextColor,               /* pSetTextColor */
893     nulldrv_SetTextJustification,       /* pSetTextJustification */
894     nulldrv_SetViewportExtEx,           /* pSetViewportExt */
895     nulldrv_SetViewportOrgEx,           /* pSetViewportOrg */
896     nulldrv_SetWindowExtEx,             /* pSetWindowExt */
897     nulldrv_SetWindowOrgEx,             /* pSetWindowOrg */
898     nulldrv_SetWorldTransform,          /* pSetWorldTransform */
899     nulldrv_StartDoc,                   /* pStartDoc */
900     nulldrv_StartPage,                  /* pStartPage */
901     NULL,                               /* pStretchBlt */
902     NULL,                               /* pStretchDIBits */
903     nulldrv_StrokeAndFillPath,          /* pStrokeAndFillPath */
904     nulldrv_StrokePath,                 /* pStrokePath */
905     nulldrv_SwapBuffers,                /* pSwapBuffers */
906     nulldrv_UnrealizePalette,           /* pUnrealizePalette */
907     nulldrv_WidenPath,                  /* pWidenPath */
908     nulldrv_wglCopyContext,             /* pwglCopyContext */
909     nulldrv_wglCreateContext,           /* pwglCreateContext */
910     nulldrv_wglCreateContextAttribsARB, /* pwglCreateContextAttribsARB */
911     nulldrv_wglDeleteContext,           /* pwglDeleteContext */
912     nulldrv_wglGetProcAddress,          /* pwglGetProcAddress */
913     nulldrv_wglGetPbufferDCARB,         /* pwglGetPbufferDCARB */
914     nulldrv_wglMakeCurrent,             /* pwglMakeCurrent */
915     nulldrv_wglMakeContextCurrentARB,   /* pwglMakeContextCurrentARB */
916     nulldrv_wglSetPixelFormatWINE,      /* pwglSetPixelFormatWINE */
917     nulldrv_wglShareLists,              /* pwglShareLists */
918     nulldrv_wglUseFontBitmapsA,         /* pwglUseFontBitmapsA */
919     nulldrv_wglUseFontBitmapsW,         /* pwglUseFontBitmapsW */
920 };
921
922
923 /*****************************************************************************
924  *      DRIVER_GetDriverName
925  *
926  */
927 BOOL DRIVER_GetDriverName( LPCWSTR device, LPWSTR driver, DWORD size )
928 {
929     static const WCHAR displayW[] = { 'd','i','s','p','l','a','y',0 };
930     static const WCHAR devicesW[] = { 'd','e','v','i','c','e','s',0 };
931     static const WCHAR display1W[] = {'\\','\\','.','\\','D','I','S','P','L','A','Y','1',0};
932     static const WCHAR empty_strW[] = { 0 };
933     WCHAR *p;
934
935     /* display is a special case */
936     if (!strcmpiW( device, displayW ) ||
937         !strcmpiW( device, display1W ))
938     {
939         lstrcpynW( driver, displayW, size );
940         return TRUE;
941     }
942
943     size = GetProfileStringW(devicesW, device, empty_strW, driver, size);
944     if(!size) {
945         WARN("Unable to find %s in [devices] section of win.ini\n", debugstr_w(device));
946         return FALSE;
947     }
948     p = strchrW(driver, ',');
949     if(!p)
950     {
951         WARN("%s entry in [devices] section of win.ini is malformed.\n", debugstr_w(device));
952         return FALSE;
953     }
954     *p = 0;
955     TRACE("Found %s for %s\n", debugstr_w(driver), debugstr_w(device));
956     return TRUE;
957 }
958
959
960 /***********************************************************************
961  *           GdiConvertToDevmodeW    (GDI32.@)
962  */
963 DEVMODEW * WINAPI GdiConvertToDevmodeW(const DEVMODEA *dmA)
964 {
965     DEVMODEW *dmW;
966     WORD dmW_size, dmA_size;
967
968     dmA_size = dmA->dmSize;
969
970     /* this is the minimal dmSize that XP accepts */
971     if (dmA_size < FIELD_OFFSET(DEVMODEA, dmFields))
972         return NULL;
973
974     if (dmA_size > sizeof(DEVMODEA))
975         dmA_size = sizeof(DEVMODEA);
976
977     dmW_size = dmA_size + CCHDEVICENAME;
978     if (dmA_size >= FIELD_OFFSET(DEVMODEA, dmFormName) + CCHFORMNAME)
979         dmW_size += CCHFORMNAME;
980
981     dmW = HeapAlloc(GetProcessHeap(), 0, dmW_size + dmA->dmDriverExtra);
982     if (!dmW) return NULL;
983
984     MultiByteToWideChar(CP_ACP, 0, (const char*) dmA->dmDeviceName, -1,
985                                    dmW->dmDeviceName, CCHDEVICENAME);
986     /* copy slightly more, to avoid long computations */
987     memcpy(&dmW->dmSpecVersion, &dmA->dmSpecVersion, dmA_size - CCHDEVICENAME);
988
989     if (dmA_size >= FIELD_OFFSET(DEVMODEA, dmFormName) + CCHFORMNAME)
990     {
991         if (dmA->dmFields & DM_FORMNAME)
992             MultiByteToWideChar(CP_ACP, 0, (const char*) dmA->dmFormName, -1,
993                                        dmW->dmFormName, CCHFORMNAME);
994         else
995             dmW->dmFormName[0] = 0;
996
997         if (dmA_size > FIELD_OFFSET(DEVMODEA, dmLogPixels))
998             memcpy(&dmW->dmLogPixels, &dmA->dmLogPixels, dmA_size - FIELD_OFFSET(DEVMODEA, dmLogPixels));
999     }
1000
1001     if (dmA->dmDriverExtra)
1002         memcpy((char *)dmW + dmW_size, (const char *)dmA + dmA_size, dmA->dmDriverExtra);
1003
1004     dmW->dmSize = dmW_size;
1005
1006     return dmW;
1007 }
1008
1009
1010 /*****************************************************************************
1011  *      @ [GDI32.100]
1012  *
1013  * This should thunk to 16-bit and simply call the proc with the given args.
1014  */
1015 INT WINAPI GDI_CallDevInstall16( FARPROC16 lpfnDevInstallProc, HWND hWnd,
1016                                  LPSTR lpModelName, LPSTR OldPort, LPSTR NewPort )
1017 {
1018     FIXME("(%p, %p, %s, %s, %s)\n", lpfnDevInstallProc, hWnd, lpModelName, OldPort, NewPort );
1019     return -1;
1020 }
1021
1022 /*****************************************************************************
1023  *      @ [GDI32.101]
1024  *
1025  * This should load the correct driver for lpszDevice and calls this driver's
1026  * ExtDeviceModePropSheet proc.
1027  *
1028  * Note: The driver calls a callback routine for each property sheet page; these
1029  * pages are supposed to be filled into the structure pointed to by lpPropSheet.
1030  * The layout of this structure is:
1031  *
1032  * struct
1033  * {
1034  *   DWORD  nPages;
1035  *   DWORD  unknown;
1036  *   HPROPSHEETPAGE  pages[10];
1037  * };
1038  */
1039 INT WINAPI GDI_CallExtDeviceModePropSheet16( HWND hWnd, LPCSTR lpszDevice,
1040                                              LPCSTR lpszPort, LPVOID lpPropSheet )
1041 {
1042     FIXME("(%p, %s, %s, %p)\n", hWnd, lpszDevice, lpszPort, lpPropSheet );
1043     return -1;
1044 }
1045
1046 /*****************************************************************************
1047  *      @ [GDI32.102]
1048  *
1049  * This should load the correct driver for lpszDevice and call this driver's
1050  * ExtDeviceMode proc.
1051  *
1052  * FIXME: convert ExtDeviceMode to unicode in the driver interface
1053  */
1054 INT WINAPI GDI_CallExtDeviceMode16( HWND hwnd,
1055                                     LPDEVMODEA lpdmOutput, LPSTR lpszDevice,
1056                                     LPSTR lpszPort, LPDEVMODEA lpdmInput,
1057                                     LPSTR lpszProfile, DWORD fwMode )
1058 {
1059     WCHAR deviceW[300];
1060     WCHAR bufW[300];
1061     char buf[300];
1062     HDC hdc;
1063     DC *dc;
1064     INT ret = -1;
1065
1066     TRACE("(%p, %p, %s, %s, %p, %s, %d)\n",
1067           hwnd, lpdmOutput, lpszDevice, lpszPort, lpdmInput, lpszProfile, fwMode );
1068
1069     if (!lpszDevice) return -1;
1070     if (!MultiByteToWideChar(CP_ACP, 0, lpszDevice, -1, deviceW, 300)) return -1;
1071
1072     if(!DRIVER_GetDriverName( deviceW, bufW, 300 )) return -1;
1073
1074     if (!WideCharToMultiByte(CP_ACP, 0, bufW, -1, buf, 300, NULL, NULL)) return -1;
1075
1076     if (!(hdc = CreateICA( buf, lpszDevice, lpszPort, NULL ))) return -1;
1077
1078     if ((dc = get_dc_ptr( hdc )))
1079     {
1080         PHYSDEV physdev = GET_DC_PHYSDEV( dc, pExtDeviceMode );
1081         ret = physdev->funcs->pExtDeviceMode( buf, hwnd, lpdmOutput, lpszDevice, lpszPort,
1082                                               lpdmInput, lpszProfile, fwMode );
1083         release_dc_ptr( dc );
1084     }
1085     DeleteDC( hdc );
1086     return ret;
1087 }
1088
1089 /****************************************************************************
1090  *      @ [GDI32.103]
1091  *
1092  * This should load the correct driver for lpszDevice and calls this driver's
1093  * AdvancedSetupDialog proc.
1094  */
1095 INT WINAPI GDI_CallAdvancedSetupDialog16( HWND hwnd, LPSTR lpszDevice,
1096                                           LPDEVMODEA devin, LPDEVMODEA devout )
1097 {
1098     TRACE("(%p, %s, %p, %p)\n", hwnd, lpszDevice, devin, devout );
1099     return -1;
1100 }
1101
1102 /*****************************************************************************
1103  *      @ [GDI32.104]
1104  *
1105  * This should load the correct driver for lpszDevice and calls this driver's
1106  * DeviceCapabilities proc.
1107  *
1108  * FIXME: convert DeviceCapabilities to unicode in the driver interface
1109  */
1110 DWORD WINAPI GDI_CallDeviceCapabilities16( LPCSTR lpszDevice, LPCSTR lpszPort,
1111                                            WORD fwCapability, LPSTR lpszOutput,
1112                                            LPDEVMODEA lpdm )
1113 {
1114     WCHAR deviceW[300];
1115     WCHAR bufW[300];
1116     char buf[300];
1117     HDC hdc;
1118     DC *dc;
1119     INT ret = -1;
1120
1121     TRACE("(%s, %s, %d, %p, %p)\n", lpszDevice, lpszPort, fwCapability, lpszOutput, lpdm );
1122
1123     if (!lpszDevice) return -1;
1124     if (!MultiByteToWideChar(CP_ACP, 0, lpszDevice, -1, deviceW, 300)) return -1;
1125
1126     if(!DRIVER_GetDriverName( deviceW, bufW, 300 )) return -1;
1127
1128     if (!WideCharToMultiByte(CP_ACP, 0, bufW, -1, buf, 300, NULL, NULL)) return -1;
1129
1130     if (!(hdc = CreateICA( buf, lpszDevice, lpszPort, NULL ))) return -1;
1131
1132     if ((dc = get_dc_ptr( hdc )))
1133     {
1134         PHYSDEV physdev = GET_DC_PHYSDEV( dc, pDeviceCapabilities );
1135         ret = physdev->funcs->pDeviceCapabilities( buf, lpszDevice, lpszPort,
1136                                                    fwCapability, lpszOutput, lpdm );
1137         release_dc_ptr( dc );
1138     }
1139     DeleteDC( hdc );
1140     return ret;
1141 }
1142
1143
1144 /************************************************************************
1145  *             Escape  [GDI32.@]
1146  */
1147 INT WINAPI Escape( HDC hdc, INT escape, INT in_count, LPCSTR in_data, LPVOID out_data )
1148 {
1149     INT ret;
1150     POINT *pt;
1151
1152     switch (escape)
1153     {
1154     case ABORTDOC:
1155         return AbortDoc( hdc );
1156
1157     case ENDDOC:
1158         return EndDoc( hdc );
1159
1160     case GETPHYSPAGESIZE:
1161         pt = out_data;
1162         pt->x = GetDeviceCaps( hdc, PHYSICALWIDTH );
1163         pt->y = GetDeviceCaps( hdc, PHYSICALHEIGHT );
1164         return 1;
1165
1166     case GETPRINTINGOFFSET:
1167         pt = out_data;
1168         pt->x = GetDeviceCaps( hdc, PHYSICALOFFSETX );
1169         pt->y = GetDeviceCaps( hdc, PHYSICALOFFSETY );
1170         return 1;
1171
1172     case GETSCALINGFACTOR:
1173         pt = out_data;
1174         pt->x = GetDeviceCaps( hdc, SCALINGFACTORX );
1175         pt->y = GetDeviceCaps( hdc, SCALINGFACTORY );
1176         return 1;
1177
1178     case NEWFRAME:
1179         return EndPage( hdc );
1180
1181     case SETABORTPROC:
1182         return SetAbortProc( hdc, (ABORTPROC)in_data );
1183
1184     case STARTDOC:
1185         {
1186             DOCINFOA doc;
1187             char *name = NULL;
1188
1189             /* in_data may not be 0 terminated so we must copy it */
1190             if (in_data)
1191             {
1192                 name = HeapAlloc( GetProcessHeap(), 0, in_count+1 );
1193                 memcpy( name, in_data, in_count );
1194                 name[in_count] = 0;
1195             }
1196             /* out_data is actually a pointer to the DocInfo structure and used as
1197              * a second input parameter */
1198             if (out_data) doc = *(DOCINFOA *)out_data;
1199             else
1200             {
1201                 doc.cbSize = sizeof(doc);
1202                 doc.lpszOutput = NULL;
1203                 doc.lpszDatatype = NULL;
1204                 doc.fwType = 0;
1205             }
1206             doc.lpszDocName = name;
1207             ret = StartDocA( hdc, &doc );
1208             HeapFree( GetProcessHeap(), 0, name );
1209             if (ret > 0) ret = StartPage( hdc );
1210             return ret;
1211         }
1212
1213     case QUERYESCSUPPORT:
1214         {
1215             const INT *ptr = (const INT *)in_data;
1216             if (in_count < sizeof(INT)) return 0;
1217             switch(*ptr)
1218             {
1219             case ABORTDOC:
1220             case ENDDOC:
1221             case GETPHYSPAGESIZE:
1222             case GETPRINTINGOFFSET:
1223             case GETSCALINGFACTOR:
1224             case NEWFRAME:
1225             case QUERYESCSUPPORT:
1226             case SETABORTPROC:
1227             case STARTDOC:
1228                 return TRUE;
1229             }
1230             break;
1231         }
1232     }
1233
1234     /* if not handled internally, pass it to the driver */
1235     return ExtEscape( hdc, escape, in_count, in_data, 0, out_data );
1236 }
1237
1238
1239 /******************************************************************************
1240  *              ExtEscape       [GDI32.@]
1241  *
1242  * Access capabilities of a particular device that are not available through GDI.
1243  *
1244  * PARAMS
1245  *    hdc         [I] Handle to device context
1246  *    nEscape     [I] Escape function
1247  *    cbInput     [I] Number of bytes in input structure
1248  *    lpszInData  [I] Pointer to input structure
1249  *    cbOutput    [I] Number of bytes in output structure
1250  *    lpszOutData [O] Pointer to output structure
1251  *
1252  * RETURNS
1253  *    Success: >0
1254  *    Not implemented: 0
1255  *    Failure: <0
1256  */
1257 INT WINAPI ExtEscape( HDC hdc, INT nEscape, INT cbInput, LPCSTR lpszInData,
1258                       INT cbOutput, LPSTR lpszOutData )
1259 {
1260     INT ret = 0;
1261     DC * dc = get_dc_ptr( hdc );
1262
1263     if (dc)
1264     {
1265         PHYSDEV physdev = GET_DC_PHYSDEV( dc, pExtEscape );
1266         ret = physdev->funcs->pExtEscape( physdev, nEscape, cbInput, lpszInData, cbOutput, lpszOutData );
1267         release_dc_ptr( dc );
1268     }
1269     return ret;
1270 }
1271
1272
1273 /*******************************************************************
1274  *      DrawEscape [GDI32.@]
1275  *
1276  *
1277  */
1278 INT WINAPI DrawEscape(HDC hdc, INT nEscape, INT cbInput, LPCSTR lpszInData)
1279 {
1280     FIXME("DrawEscape, stub\n");
1281     return 0;
1282 }
1283
1284 /*******************************************************************
1285  *      NamedEscape [GDI32.@]
1286  */
1287 INT WINAPI NamedEscape( HDC hdc, LPCWSTR pDriver, INT nEscape, INT cbInput, LPCSTR lpszInData,
1288                         INT cbOutput, LPSTR lpszOutData )
1289 {
1290     FIXME("(%p, %s, %d, %d, %p, %d, %p)\n",
1291           hdc, wine_dbgstr_w(pDriver), nEscape, cbInput, lpszInData, cbOutput,
1292           lpszOutData);
1293     return 0;
1294 }
1295
1296 /*******************************************************************
1297  *      DdQueryDisplaySettingsUniqueness [GDI32.@]
1298  *      GdiEntry13                       [GDI32.@]
1299  */
1300 ULONG WINAPI DdQueryDisplaySettingsUniqueness(VOID)
1301 {
1302     static int warn_once;
1303
1304     if (!warn_once++)
1305         FIXME("stub\n");
1306     return 0;
1307 }