shell32: Added a stub for IShellDispatch2.
[wine/multimedia.git] / dlls / gdi32 / driver.c
blob36bf48f31218a8098bf0dab4bb423be932a8e178
1 /*
2 * Graphics driver management functions
4 * Copyright 1994 Bob Amstadt
5 * Copyright 1996, 2001 Alexandre Julliard
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.
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.
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
22 #include "config.h"
23 #include "wine/port.h"
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"
35 #include "gdi_private.h"
36 #include "wine/unicode.h"
37 #include "wine/list.h"
38 #include "wine/debug.h"
40 WINE_DEFAULT_DEBUG_CHANNEL(driver);
42 struct graphics_driver
44 struct list entry;
45 HMODULE module; /* module handle */
46 const struct gdi_dc_funcs *funcs;
49 static struct list drivers = LIST_INIT( drivers );
50 static struct graphics_driver *display_driver;
52 const struct gdi_dc_funcs *font_driver = NULL;
54 static CRITICAL_SECTION driver_section;
55 static CRITICAL_SECTION_DEBUG critsect_debug =
57 0, 0, &driver_section,
58 { &critsect_debug.ProcessLocksList, &critsect_debug.ProcessLocksList },
59 0, 0, { (DWORD_PTR)(__FILE__ ": driver_section") }
61 static CRITICAL_SECTION driver_section = { &critsect_debug, -1, 0, 0, 0, 0 };
63 /**********************************************************************
64 * create_driver
66 * Allocate and fill the driver structure for a given module.
68 static struct graphics_driver *create_driver( HMODULE module )
70 static const struct gdi_dc_funcs empty_funcs;
71 const struct gdi_dc_funcs *funcs = NULL;
72 struct graphics_driver *driver;
74 if (!(driver = HeapAlloc( GetProcessHeap(), 0, sizeof(*driver)))) return NULL;
75 driver->module = module;
77 if (module)
79 const struct gdi_dc_funcs * (CDECL *wine_get_gdi_driver)( unsigned int version );
81 if ((wine_get_gdi_driver = (void *)GetProcAddress( module, "wine_get_gdi_driver" )))
82 funcs = wine_get_gdi_driver( WINE_GDI_DRIVER_VERSION );
84 if (!funcs) funcs = &empty_funcs;
85 driver->funcs = funcs;
86 return driver;
90 /**********************************************************************
91 * get_display_driver
93 * Special case for loading the display driver: get the name from the config file
95 static const struct gdi_dc_funcs *get_display_driver(void)
97 struct graphics_driver *driver;
98 char buffer[MAX_PATH], libname[32], *name, *next;
99 HMODULE module = 0;
100 HKEY hkey;
102 if (display_driver) return display_driver->funcs; /* already loaded */
104 strcpy( buffer, "x11" ); /* default value */
105 /* @@ Wine registry key: HKCU\Software\Wine\Drivers */
106 if (!RegOpenKeyA( HKEY_CURRENT_USER, "Software\\Wine\\Drivers", &hkey ))
108 DWORD type, count = sizeof(buffer);
109 RegQueryValueExA( hkey, "Graphics", 0, &type, (LPBYTE) buffer, &count );
110 RegCloseKey( hkey );
113 name = buffer;
114 while (name)
116 next = strchr( name, ',' );
117 if (next) *next++ = 0;
119 snprintf( libname, sizeof(libname), "wine%s.drv", name );
120 if ((module = LoadLibraryA( libname )) != 0) break;
121 name = next;
124 if (!(driver = create_driver( module )))
126 MESSAGE( "Could not create graphics driver '%s'\n", buffer );
127 FreeLibrary( module );
128 ExitProcess(1);
130 if (InterlockedCompareExchangePointer( (void **)&display_driver, driver, NULL ))
132 /* somebody beat us to it */
133 FreeLibrary( driver->module );
134 HeapFree( GetProcessHeap(), 0, driver );
136 return display_driver->funcs;
140 /**********************************************************************
141 * DRIVER_load_driver
143 const struct gdi_dc_funcs *DRIVER_load_driver( LPCWSTR name )
145 HMODULE module;
146 struct graphics_driver *driver, *new_driver;
147 static const WCHAR displayW[] = { 'd','i','s','p','l','a','y',0 };
148 static const WCHAR display1W[] = {'\\','\\','.','\\','D','I','S','P','L','A','Y','1',0};
150 /* display driver is a special case */
151 if (!strcmpiW( name, displayW ) || !strcmpiW( name, display1W )) return get_display_driver();
153 if ((module = GetModuleHandleW( name )))
155 if (display_driver && display_driver->module == module) return display_driver->funcs;
156 EnterCriticalSection( &driver_section );
157 LIST_FOR_EACH_ENTRY( driver, &drivers, struct graphics_driver, entry )
159 if (driver->module == module) goto done;
161 LeaveCriticalSection( &driver_section );
164 if (!(module = LoadLibraryW( name ))) return NULL;
166 if (!(new_driver = create_driver( module )))
168 FreeLibrary( module );
169 return NULL;
172 /* check if someone else added it in the meantime */
173 EnterCriticalSection( &driver_section );
174 LIST_FOR_EACH_ENTRY( driver, &drivers, struct graphics_driver, entry )
176 if (driver->module != module) continue;
177 FreeLibrary( module );
178 HeapFree( GetProcessHeap(), 0, new_driver );
179 goto done;
181 driver = new_driver;
182 list_add_head( &drivers, &driver->entry );
183 TRACE( "loaded driver %p for %s\n", driver, debugstr_w(name) );
184 done:
185 LeaveCriticalSection( &driver_section );
186 return driver->funcs;
190 static INT nulldrv_AbortDoc( PHYSDEV dev )
192 return 0;
195 static BOOL nulldrv_Arc( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
196 INT xstart, INT ystart, INT xend, INT yend )
198 return TRUE;
201 static INT nulldrv_ChoosePixelFormat( PHYSDEV dev, const PIXELFORMATDESCRIPTOR *descr )
203 return 0;
206 static BOOL nulldrv_Chord( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
207 INT xstart, INT ystart, INT xend, INT yend )
209 return TRUE;
212 static BOOL nulldrv_CreateBitmap( PHYSDEV dev, HBITMAP bitmap )
214 return TRUE;
217 static BOOL nulldrv_CreateCompatibleDC( PHYSDEV orig, PHYSDEV *pdev )
219 if (!display_driver || !display_driver->funcs->pCreateCompatibleDC) return TRUE;
220 return display_driver->funcs->pCreateCompatibleDC( NULL, pdev );
223 static BOOL nulldrv_CreateDC( PHYSDEV *dev, LPCWSTR driver, LPCWSTR device,
224 LPCWSTR output, const DEVMODEW *devmode )
226 assert(0); /* should never be called */
227 return FALSE;
230 static BOOL nulldrv_DeleteBitmap( HBITMAP bitmap )
232 return TRUE;
235 static BOOL nulldrv_DeleteDC( PHYSDEV dev )
237 assert(0); /* should never be called */
238 return TRUE;
241 static BOOL nulldrv_DeleteObject( PHYSDEV dev, HGDIOBJ obj )
243 return TRUE;
246 static INT nulldrv_DescribePixelFormat( PHYSDEV dev, INT format, UINT size, PIXELFORMATDESCRIPTOR * descr )
248 return 0;
251 static DWORD nulldrv_DeviceCapabilities( LPSTR buffer, LPCSTR device, LPCSTR port,
252 WORD cap, LPSTR output, DEVMODEA *devmode )
254 return -1;
257 static BOOL nulldrv_Ellipse( PHYSDEV dev, INT left, INT top, INT right, INT bottom )
259 return TRUE;
262 static INT nulldrv_EndDoc( PHYSDEV dev )
264 return 0;
267 static INT nulldrv_EndPage( PHYSDEV dev )
269 return 0;
272 static BOOL nulldrv_EnumFonts( PHYSDEV dev, LOGFONTW *logfont, FONTENUMPROCW proc, LPARAM lParam )
274 return TRUE;
277 static INT nulldrv_EnumICMProfiles( PHYSDEV dev, ICMENUMPROCW func, LPARAM lparam )
279 return -1;
282 static INT nulldrv_ExtDeviceMode( LPSTR buffer, HWND hwnd, DEVMODEA *output, LPSTR device,
283 LPSTR port, DEVMODEA *input, LPSTR profile, DWORD mode )
285 return -1;
288 static INT nulldrv_ExtEscape( PHYSDEV dev, INT escape, INT in_size, const void *in_data,
289 INT out_size, void *out_data )
291 return 0;
294 static BOOL nulldrv_ExtFloodFill( PHYSDEV dev, INT x, INT y, COLORREF color, UINT type )
296 return TRUE;
299 static BOOL nulldrv_FontIsLinked( PHYSDEV dev )
301 return FALSE;
304 static BOOL nulldrv_GdiComment( PHYSDEV dev, UINT size, const BYTE *data )
306 return FALSE;
309 static BOOL nulldrv_GdiRealizationInfo( PHYSDEV dev, void *info )
311 return FALSE;
314 static BOOL nulldrv_GetCharABCWidths( PHYSDEV dev, UINT first, UINT last, LPABC abc )
316 return FALSE;
319 static BOOL nulldrv_GetCharABCWidthsI( PHYSDEV dev, UINT first, UINT count, WORD *indices, LPABC abc )
321 return FALSE;
324 static BOOL nulldrv_GetCharWidth( PHYSDEV dev, UINT first, UINT last, INT *buffer )
326 return FALSE;
329 static INT nulldrv_GetDeviceCaps( PHYSDEV dev, INT cap )
331 switch (cap) /* return meaningful values for some entries */
333 case HORZRES: return 640;
334 case VERTRES: return 480;
335 case BITSPIXEL: return 1;
336 case PLANES: return 1;
337 case NUMCOLORS: return 2;
338 case ASPECTX: return 36;
339 case ASPECTY: return 36;
340 case ASPECTXY: return 51;
341 case LOGPIXELSX: return 72;
342 case LOGPIXELSY: return 72;
343 case SIZEPALETTE: return 2;
344 case TEXTCAPS: return (TC_OP_CHARACTER | TC_OP_STROKE | TC_CP_STROKE |
345 TC_CR_ANY | TC_SF_X_YINDEP | TC_SA_DOUBLE | TC_SA_INTEGER |
346 TC_SA_CONTIN | TC_UA_ABLE | TC_SO_ABLE | TC_RA_ABLE | TC_VA_ABLE);
347 default: return 0;
351 static BOOL nulldrv_GetDeviceGammaRamp( PHYSDEV dev, void *ramp )
353 SetLastError( ERROR_INVALID_PARAMETER );
354 return FALSE;
357 static DWORD nulldrv_GetFontData( PHYSDEV dev, DWORD table, DWORD offset, LPVOID buffer, DWORD length )
359 return FALSE;
362 static DWORD nulldrv_GetFontUnicodeRanges( PHYSDEV dev, LPGLYPHSET glyphs )
364 return 0;
367 static DWORD nulldrv_GetGlyphIndices( PHYSDEV dev, LPCWSTR str, INT count, LPWORD indices, DWORD flags )
369 return GDI_ERROR;
372 static DWORD nulldrv_GetGlyphOutline( PHYSDEV dev, UINT ch, UINT format, LPGLYPHMETRICS metrics,
373 DWORD size, LPVOID buffer, const MAT2 *mat )
375 return GDI_ERROR;
378 static BOOL nulldrv_GetICMProfile( PHYSDEV dev, LPDWORD size, LPWSTR filename )
380 return FALSE;
383 static DWORD nulldrv_GetKerningPairs( PHYSDEV dev, DWORD count, LPKERNINGPAIR pairs )
385 return 0;
388 static UINT nulldrv_GetOutlineTextMetrics( PHYSDEV dev, UINT size, LPOUTLINETEXTMETRICW otm )
390 return 0;
393 static INT nulldrv_GetPixelFormat( PHYSDEV dev )
395 return 0;
398 static UINT nulldrv_GetSystemPaletteEntries( PHYSDEV dev, UINT start, UINT count, PALETTEENTRY *entries )
400 return 0;
403 static UINT nulldrv_GetTextCharsetInfo( PHYSDEV dev, LPFONTSIGNATURE fs, DWORD flags )
405 return DEFAULT_CHARSET;
408 static BOOL nulldrv_GetTextExtentExPoint( PHYSDEV dev, LPCWSTR str, INT count, INT max_ext,
409 INT *fit, INT *dx, SIZE *size )
411 return FALSE;
414 static BOOL nulldrv_GetTextExtentExPointI( PHYSDEV dev, const WORD *indices, INT count, INT max_ext,
415 INT *fit, INT *dx, SIZE *size )
417 return FALSE;
420 static INT nulldrv_GetTextFace( PHYSDEV dev, INT size, LPWSTR name )
422 INT ret = 0;
423 LOGFONTW font;
424 HFONT hfont = GetCurrentObject( dev->hdc, OBJ_FONT );
426 if (GetObjectW( hfont, sizeof(font), &font ))
428 ret = strlenW( font.lfFaceName ) + 1;
429 if (name)
431 lstrcpynW( name, font.lfFaceName, size );
432 ret = min( size, ret );
435 return ret;
438 static BOOL nulldrv_GetTextMetrics( PHYSDEV dev, TEXTMETRICW *metrics )
440 return FALSE;
443 static BOOL nulldrv_LineTo( PHYSDEV dev, INT x, INT y )
445 return TRUE;
448 static BOOL nulldrv_MoveTo( PHYSDEV dev, INT x, INT y )
450 return TRUE;
453 static BOOL nulldrv_PaintRgn( PHYSDEV dev, HRGN rgn )
455 return TRUE;
458 static BOOL nulldrv_PatBlt( PHYSDEV dev, struct bitblt_coords *dst, DWORD rop )
460 return TRUE;
463 static BOOL nulldrv_Pie( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
464 INT xstart, INT ystart, INT xend, INT yend )
466 return TRUE;
469 static BOOL nulldrv_PolyPolygon( PHYSDEV dev, const POINT *points, const INT *counts, UINT polygons )
471 return TRUE;
474 static BOOL nulldrv_PolyPolyline( PHYSDEV dev, const POINT *points, const DWORD *counts, DWORD lines )
476 return TRUE;
479 static BOOL nulldrv_Polygon( PHYSDEV dev, const POINT *points, INT count )
481 INT counts[1] = { count };
483 return PolyPolygon( dev->hdc, points, counts, 1 );
486 static BOOL nulldrv_Polyline( PHYSDEV dev, const POINT *points, INT count )
488 DWORD counts[1] = { count };
490 if (count < 0) return FALSE;
491 return PolyPolyline( dev->hdc, points, counts, 1 );
494 static UINT nulldrv_RealizeDefaultPalette( PHYSDEV dev )
496 return 0;
499 static UINT nulldrv_RealizePalette( PHYSDEV dev, HPALETTE palette, BOOL primary )
501 return 0;
504 static BOOL nulldrv_Rectangle( PHYSDEV dev, INT left, INT top, INT right, INT bottom )
506 return TRUE;
509 static HDC nulldrv_ResetDC( PHYSDEV dev, const DEVMODEW *devmode )
511 return 0;
514 static BOOL nulldrv_RoundRect( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
515 INT ell_width, INT ell_height )
517 return TRUE;
520 static HBITMAP nulldrv_SelectBitmap( PHYSDEV dev, HBITMAP bitmap )
522 return bitmap;
525 static HBRUSH nulldrv_SelectBrush( PHYSDEV dev, HBRUSH brush, const struct brush_pattern *pattern )
527 return brush;
530 static HFONT nulldrv_SelectFont( PHYSDEV dev, HFONT font )
532 return 0;
535 static HPALETTE nulldrv_SelectPalette( PHYSDEV dev, HPALETTE palette, BOOL bkgnd )
537 return palette;
540 static HPEN nulldrv_SelectPen( PHYSDEV dev, HPEN pen, const struct brush_pattern *pattern )
542 return pen;
545 static INT nulldrv_SetArcDirection( PHYSDEV dev, INT dir )
547 return dir;
550 static COLORREF nulldrv_SetBkColor( PHYSDEV dev, COLORREF color )
552 return color;
555 static INT nulldrv_SetBkMode( PHYSDEV dev, INT mode )
557 return mode;
560 static COLORREF nulldrv_SetDCBrushColor( PHYSDEV dev, COLORREF color )
562 return color;
565 static COLORREF nulldrv_SetDCPenColor( PHYSDEV dev, COLORREF color )
567 return color;
570 static void nulldrv_SetDeviceClipping( PHYSDEV dev, HRGN rgn )
574 static DWORD nulldrv_SetLayout( PHYSDEV dev, DWORD layout )
576 return layout;
579 static BOOL nulldrv_SetDeviceGammaRamp( PHYSDEV dev, void *ramp )
581 SetLastError( ERROR_INVALID_PARAMETER );
582 return FALSE;
585 static DWORD nulldrv_SetMapperFlags( PHYSDEV dev, DWORD flags )
587 return flags;
590 static COLORREF nulldrv_SetPixel( PHYSDEV dev, INT x, INT y, COLORREF color )
592 return color;
595 static BOOL nulldrv_SetPixelFormat( PHYSDEV dev, INT format, const PIXELFORMATDESCRIPTOR *descr )
597 return FALSE;
600 static INT nulldrv_SetPolyFillMode( PHYSDEV dev, INT mode )
602 return mode;
605 static INT nulldrv_SetROP2( PHYSDEV dev, INT rop )
607 return rop;
610 static INT nulldrv_SetRelAbs( PHYSDEV dev, INT mode )
612 return mode;
615 static INT nulldrv_SetStretchBltMode( PHYSDEV dev, INT mode )
617 return mode;
620 static UINT nulldrv_SetTextAlign( PHYSDEV dev, UINT align )
622 return align;
625 static INT nulldrv_SetTextCharacterExtra( PHYSDEV dev, INT extra )
627 return extra;
630 static COLORREF nulldrv_SetTextColor( PHYSDEV dev, COLORREF color )
632 return color;
635 static BOOL nulldrv_SetTextJustification( PHYSDEV dev, INT extra, INT breaks )
637 return TRUE;
640 static INT nulldrv_StartDoc( PHYSDEV dev, const DOCINFOW *info )
642 return 0;
645 static INT nulldrv_StartPage( PHYSDEV dev )
647 return 1;
650 static BOOL nulldrv_SwapBuffers( PHYSDEV dev )
652 return TRUE;
655 static BOOL nulldrv_UnrealizePalette( HPALETTE palette )
657 return FALSE;
660 static BOOL nulldrv_wglCopyContext( HGLRC ctx_src, HGLRC ctx_dst, UINT mask )
662 return FALSE;
665 static HGLRC nulldrv_wglCreateContext( PHYSDEV dev )
667 return 0;
670 static HGLRC nulldrv_wglCreateContextAttribsARB( PHYSDEV dev, HGLRC share_ctx, const int *attribs )
672 return 0;
675 static BOOL nulldrv_wglDeleteContext( HGLRC ctx )
677 return FALSE;
680 static PROC nulldrv_wglGetProcAddress( LPCSTR name )
682 return NULL;
685 static HDC nulldrv_wglGetPbufferDCARB( PHYSDEV dev, void *pbuffer )
687 return 0;
690 static BOOL nulldrv_wglMakeCurrent( PHYSDEV dev, HGLRC ctx )
692 return FALSE;
695 static BOOL nulldrv_wglMakeContextCurrentARB( PHYSDEV dev_draw, PHYSDEV dev_read, HGLRC ctx )
697 return FALSE;
700 static BOOL nulldrv_wglSetPixelFormatWINE( PHYSDEV dev, INT format, const PIXELFORMATDESCRIPTOR *descr )
702 return FALSE;
705 static BOOL nulldrv_wglShareLists( HGLRC ctx1, HGLRC ctx2 )
707 return FALSE;
710 static BOOL nulldrv_wglUseFontBitmapsA( PHYSDEV dev, DWORD start, DWORD count, DWORD base )
712 return FALSE;
715 static BOOL nulldrv_wglUseFontBitmapsW( PHYSDEV dev, DWORD start, DWORD count, DWORD base )
717 return FALSE;
720 const struct gdi_dc_funcs null_driver =
722 nulldrv_AbortDoc, /* pAbortDoc */
723 nulldrv_AbortPath, /* pAbortPath */
724 nulldrv_AlphaBlend, /* pAlphaBlend */
725 nulldrv_AngleArc, /* pAngleArc */
726 nulldrv_Arc, /* pArc */
727 nulldrv_ArcTo, /* pArcTo */
728 nulldrv_BeginPath, /* pBeginPath */
729 nulldrv_BlendImage, /* pBlendImage */
730 nulldrv_ChoosePixelFormat, /* pChoosePixelFormat */
731 nulldrv_Chord, /* pChord */
732 nulldrv_CloseFigure, /* pCloseFigure */
733 nulldrv_CopyBitmap, /* pCopyBitmap */
734 nulldrv_CreateBitmap, /* pCreateBitmap */
735 nulldrv_CreateCompatibleDC, /* pCreateCompatibleDC */
736 nulldrv_CreateDC, /* pCreateDC */
737 nulldrv_DeleteBitmap, /* pDeleteBitmap */
738 nulldrv_DeleteDC, /* pDeleteDC */
739 nulldrv_DeleteObject, /* pDeleteObject */
740 nulldrv_DescribePixelFormat, /* pDescribePixelFormat */
741 nulldrv_DeviceCapabilities, /* pDeviceCapabilities */
742 nulldrv_Ellipse, /* pEllipse */
743 nulldrv_EndDoc, /* pEndDoc */
744 nulldrv_EndPage, /* pEndPage */
745 nulldrv_EndPath, /* pEndPath */
746 nulldrv_EnumFonts, /* pEnumFonts */
747 nulldrv_EnumICMProfiles, /* pEnumICMProfiles */
748 nulldrv_ExcludeClipRect, /* pExcludeClipRect */
749 nulldrv_ExtDeviceMode, /* pExtDeviceMode */
750 nulldrv_ExtEscape, /* pExtEscape */
751 nulldrv_ExtFloodFill, /* pExtFloodFill */
752 nulldrv_ExtSelectClipRgn, /* pExtSelectClipRgn */
753 nulldrv_ExtTextOut, /* pExtTextOut */
754 nulldrv_FillPath, /* pFillPath */
755 nulldrv_FillRgn, /* pFillRgn */
756 nulldrv_FlattenPath, /* pFlattenPath */
757 nulldrv_FontIsLinked, /* pFontIsLinked */
758 nulldrv_FrameRgn, /* pFrameRgn */
759 nulldrv_GdiComment, /* pGdiComment */
760 nulldrv_GdiRealizationInfo, /* pGdiRealizationInfo */
761 nulldrv_GetCharABCWidths, /* pGetCharABCWidths */
762 nulldrv_GetCharABCWidthsI, /* pGetCharABCWidthsI */
763 nulldrv_GetCharWidth, /* pGetCharWidth */
764 nulldrv_GetDeviceCaps, /* pGetDeviceCaps */
765 nulldrv_GetDeviceGammaRamp, /* pGetDeviceGammaRamp */
766 nulldrv_GetFontData, /* pGetFontData */
767 nulldrv_GetFontUnicodeRanges, /* pGetFontUnicodeRanges */
768 nulldrv_GetGlyphIndices, /* pGetGlyphIndices */
769 nulldrv_GetGlyphOutline, /* pGetGlyphOutline */
770 nulldrv_GetICMProfile, /* pGetICMProfile */
771 nulldrv_GetImage, /* pGetImage */
772 nulldrv_GetKerningPairs, /* pGetKerningPairs */
773 nulldrv_GetNearestColor, /* pGetNearestColor */
774 nulldrv_GetOutlineTextMetrics, /* pGetOutlineTextMetrics */
775 nulldrv_GetPixel, /* pGetPixel */
776 nulldrv_GetPixelFormat, /* pGetPixelFormat */
777 nulldrv_GetSystemPaletteEntries, /* pGetSystemPaletteEntries */
778 nulldrv_GetTextCharsetInfo, /* pGetTextCharsetInfo */
779 nulldrv_GetTextExtentExPoint, /* pGetTextExtentExPoint */
780 nulldrv_GetTextExtentExPointI, /* pGetTextExtentExPointI */
781 nulldrv_GetTextFace, /* pGetTextFace */
782 nulldrv_GetTextMetrics, /* pGetTextMetrics */
783 nulldrv_GradientFill, /* pGradientFill */
784 nulldrv_IntersectClipRect, /* pIntersectClipRect */
785 nulldrv_InvertRgn, /* pInvertRgn */
786 nulldrv_LineTo, /* pLineTo */
787 nulldrv_ModifyWorldTransform, /* pModifyWorldTransform */
788 nulldrv_MoveTo, /* pMoveTo */
789 nulldrv_OffsetClipRgn, /* pOffsetClipRgn */
790 nulldrv_OffsetViewportOrgEx, /* pOffsetViewportOrg */
791 nulldrv_OffsetWindowOrgEx, /* pOffsetWindowOrg */
792 nulldrv_PaintRgn, /* pPaintRgn */
793 nulldrv_PatBlt, /* pPatBlt */
794 nulldrv_Pie, /* pPie */
795 nulldrv_PolyBezier, /* pPolyBezier */
796 nulldrv_PolyBezierTo, /* pPolyBezierTo */
797 nulldrv_PolyDraw, /* pPolyDraw */
798 nulldrv_PolyPolygon, /* pPolyPolygon */
799 nulldrv_PolyPolyline, /* pPolyPolyline */
800 nulldrv_Polygon, /* pPolygon */
801 nulldrv_Polyline, /* pPolyline */
802 nulldrv_PolylineTo, /* pPolylineTo */
803 nulldrv_PutImage, /* pPutImage */
804 nulldrv_RealizeDefaultPalette, /* pRealizeDefaultPalette */
805 nulldrv_RealizePalette, /* pRealizePalette */
806 nulldrv_Rectangle, /* pRectangle */
807 nulldrv_ResetDC, /* pResetDC */
808 nulldrv_RestoreDC, /* pRestoreDC */
809 nulldrv_RoundRect, /* pRoundRect */
810 nulldrv_SaveDC, /* pSaveDC */
811 nulldrv_ScaleViewportExtEx, /* pScaleViewportExt */
812 nulldrv_ScaleWindowExtEx, /* pScaleWindowExt */
813 nulldrv_SelectBitmap, /* pSelectBitmap */
814 nulldrv_SelectBrush, /* pSelectBrush */
815 nulldrv_SelectClipPath, /* pSelectClipPath */
816 nulldrv_SelectFont, /* pSelectFont */
817 nulldrv_SelectPalette, /* pSelectPalette */
818 nulldrv_SelectPen, /* pSelectPen */
819 nulldrv_SetArcDirection, /* pSetArcDirection */
820 nulldrv_SetBkColor, /* pSetBkColor */
821 nulldrv_SetBkMode, /* pSetBkMode */
822 nulldrv_SetDCBrushColor, /* pSetDCBrushColor */
823 nulldrv_SetDCPenColor, /* pSetDCPenColor */
824 nulldrv_SetDIBitsToDevice, /* pSetDIBitsToDevice */
825 nulldrv_SetDeviceClipping, /* pSetDeviceClipping */
826 nulldrv_SetDeviceGammaRamp, /* pSetDeviceGammaRamp */
827 nulldrv_SetLayout, /* pSetLayout */
828 nulldrv_SetMapMode, /* pSetMapMode */
829 nulldrv_SetMapperFlags, /* pSetMapperFlags */
830 nulldrv_SetPixel, /* pSetPixel */
831 nulldrv_SetPixelFormat, /* pSetPixelFormat */
832 nulldrv_SetPolyFillMode, /* pSetPolyFillMode */
833 nulldrv_SetROP2, /* pSetROP2 */
834 nulldrv_SetRelAbs, /* pSetRelAbs */
835 nulldrv_SetStretchBltMode, /* pSetStretchBltMode */
836 nulldrv_SetTextAlign, /* pSetTextAlign */
837 nulldrv_SetTextCharacterExtra, /* pSetTextCharacterExtra */
838 nulldrv_SetTextColor, /* pSetTextColor */
839 nulldrv_SetTextJustification, /* pSetTextJustification */
840 nulldrv_SetViewportExtEx, /* pSetViewportExt */
841 nulldrv_SetViewportOrgEx, /* pSetViewportOrg */
842 nulldrv_SetWindowExtEx, /* pSetWindowExt */
843 nulldrv_SetWindowOrgEx, /* pSetWindowOrg */
844 nulldrv_SetWorldTransform, /* pSetWorldTransform */
845 nulldrv_StartDoc, /* pStartDoc */
846 nulldrv_StartPage, /* pStartPage */
847 nulldrv_StretchBlt, /* pStretchBlt */
848 nulldrv_StretchDIBits, /* pStretchDIBits */
849 nulldrv_StrokeAndFillPath, /* pStrokeAndFillPath */
850 nulldrv_StrokePath, /* pStrokePath */
851 nulldrv_SwapBuffers, /* pSwapBuffers */
852 nulldrv_UnrealizePalette, /* pUnrealizePalette */
853 nulldrv_WidenPath, /* pWidenPath */
854 nulldrv_wglCopyContext, /* pwglCopyContext */
855 nulldrv_wglCreateContext, /* pwglCreateContext */
856 nulldrv_wglCreateContextAttribsARB, /* pwglCreateContextAttribsARB */
857 nulldrv_wglDeleteContext, /* pwglDeleteContext */
858 nulldrv_wglGetPbufferDCARB, /* pwglGetPbufferDCARB */
859 nulldrv_wglGetProcAddress, /* pwglGetProcAddress */
860 nulldrv_wglMakeContextCurrentARB, /* pwglMakeContextCurrentARB */
861 nulldrv_wglMakeCurrent, /* pwglMakeCurrent */
862 nulldrv_wglSetPixelFormatWINE, /* pwglSetPixelFormatWINE */
863 nulldrv_wglShareLists, /* pwglShareLists */
864 nulldrv_wglUseFontBitmapsA, /* pwglUseFontBitmapsA */
865 nulldrv_wglUseFontBitmapsW, /* pwglUseFontBitmapsW */
869 /*****************************************************************************
870 * DRIVER_GetDriverName
873 BOOL DRIVER_GetDriverName( LPCWSTR device, LPWSTR driver, DWORD size )
875 static const WCHAR displayW[] = { 'd','i','s','p','l','a','y',0 };
876 static const WCHAR devicesW[] = { 'd','e','v','i','c','e','s',0 };
877 static const WCHAR display1W[] = {'\\','\\','.','\\','D','I','S','P','L','A','Y','1',0};
878 static const WCHAR empty_strW[] = { 0 };
879 WCHAR *p;
881 /* display is a special case */
882 if (!strcmpiW( device, displayW ) ||
883 !strcmpiW( device, display1W ))
885 lstrcpynW( driver, displayW, size );
886 return TRUE;
889 size = GetProfileStringW(devicesW, device, empty_strW, driver, size);
890 if(!size) {
891 WARN("Unable to find %s in [devices] section of win.ini\n", debugstr_w(device));
892 return FALSE;
894 p = strchrW(driver, ',');
895 if(!p)
897 WARN("%s entry in [devices] section of win.ini is malformed.\n", debugstr_w(device));
898 return FALSE;
900 *p = 0;
901 TRACE("Found %s for %s\n", debugstr_w(driver), debugstr_w(device));
902 return TRUE;
906 /***********************************************************************
907 * GdiConvertToDevmodeW (GDI32.@)
909 DEVMODEW * WINAPI GdiConvertToDevmodeW(const DEVMODEA *dmA)
911 DEVMODEW *dmW;
912 WORD dmW_size, dmA_size;
914 dmA_size = dmA->dmSize;
916 /* this is the minimal dmSize that XP accepts */
917 if (dmA_size < FIELD_OFFSET(DEVMODEA, dmFields))
918 return NULL;
920 if (dmA_size > sizeof(DEVMODEA))
921 dmA_size = sizeof(DEVMODEA);
923 dmW_size = dmA_size + CCHDEVICENAME;
924 if (dmA_size >= FIELD_OFFSET(DEVMODEA, dmFormName) + CCHFORMNAME)
925 dmW_size += CCHFORMNAME;
927 dmW = HeapAlloc(GetProcessHeap(), 0, dmW_size + dmA->dmDriverExtra);
928 if (!dmW) return NULL;
930 MultiByteToWideChar(CP_ACP, 0, (const char*) dmA->dmDeviceName, -1,
931 dmW->dmDeviceName, CCHDEVICENAME);
932 /* copy slightly more, to avoid long computations */
933 memcpy(&dmW->dmSpecVersion, &dmA->dmSpecVersion, dmA_size - CCHDEVICENAME);
935 if (dmA_size >= FIELD_OFFSET(DEVMODEA, dmFormName) + CCHFORMNAME)
937 if (dmA->dmFields & DM_FORMNAME)
938 MultiByteToWideChar(CP_ACP, 0, (const char*) dmA->dmFormName, -1,
939 dmW->dmFormName, CCHFORMNAME);
940 else
941 dmW->dmFormName[0] = 0;
943 if (dmA_size > FIELD_OFFSET(DEVMODEA, dmLogPixels))
944 memcpy(&dmW->dmLogPixels, &dmA->dmLogPixels, dmA_size - FIELD_OFFSET(DEVMODEA, dmLogPixels));
947 if (dmA->dmDriverExtra)
948 memcpy((char *)dmW + dmW_size, (const char *)dmA + dmA_size, dmA->dmDriverExtra);
950 dmW->dmSize = dmW_size;
952 return dmW;
956 /*****************************************************************************
957 * @ [GDI32.100]
959 * This should thunk to 16-bit and simply call the proc with the given args.
961 INT WINAPI GDI_CallDevInstall16( FARPROC16 lpfnDevInstallProc, HWND hWnd,
962 LPSTR lpModelName, LPSTR OldPort, LPSTR NewPort )
964 FIXME("(%p, %p, %s, %s, %s)\n", lpfnDevInstallProc, hWnd, lpModelName, OldPort, NewPort );
965 return -1;
968 /*****************************************************************************
969 * @ [GDI32.101]
971 * This should load the correct driver for lpszDevice and calls this driver's
972 * ExtDeviceModePropSheet proc.
974 * Note: The driver calls a callback routine for each property sheet page; these
975 * pages are supposed to be filled into the structure pointed to by lpPropSheet.
976 * The layout of this structure is:
978 * struct
980 * DWORD nPages;
981 * DWORD unknown;
982 * HPROPSHEETPAGE pages[10];
983 * };
985 INT WINAPI GDI_CallExtDeviceModePropSheet16( HWND hWnd, LPCSTR lpszDevice,
986 LPCSTR lpszPort, LPVOID lpPropSheet )
988 FIXME("(%p, %s, %s, %p)\n", hWnd, lpszDevice, lpszPort, lpPropSheet );
989 return -1;
992 /*****************************************************************************
993 * @ [GDI32.102]
995 * This should load the correct driver for lpszDevice and call this driver's
996 * ExtDeviceMode proc.
998 * FIXME: convert ExtDeviceMode to unicode in the driver interface
1000 INT WINAPI GDI_CallExtDeviceMode16( HWND hwnd,
1001 LPDEVMODEA lpdmOutput, LPSTR lpszDevice,
1002 LPSTR lpszPort, LPDEVMODEA lpdmInput,
1003 LPSTR lpszProfile, DWORD fwMode )
1005 WCHAR deviceW[300];
1006 WCHAR bufW[300];
1007 char buf[300];
1008 HDC hdc;
1009 DC *dc;
1010 INT ret = -1;
1012 TRACE("(%p, %p, %s, %s, %p, %s, %d)\n",
1013 hwnd, lpdmOutput, lpszDevice, lpszPort, lpdmInput, lpszProfile, fwMode );
1015 if (!lpszDevice) return -1;
1016 if (!MultiByteToWideChar(CP_ACP, 0, lpszDevice, -1, deviceW, 300)) return -1;
1018 if(!DRIVER_GetDriverName( deviceW, bufW, 300 )) return -1;
1020 if (!WideCharToMultiByte(CP_ACP, 0, bufW, -1, buf, 300, NULL, NULL)) return -1;
1022 if (!(hdc = CreateICA( buf, lpszDevice, lpszPort, NULL ))) return -1;
1024 if ((dc = get_dc_ptr( hdc )))
1026 PHYSDEV physdev = GET_DC_PHYSDEV( dc, pExtDeviceMode );
1027 ret = physdev->funcs->pExtDeviceMode( buf, hwnd, lpdmOutput, lpszDevice, lpszPort,
1028 lpdmInput, lpszProfile, fwMode );
1029 release_dc_ptr( dc );
1031 DeleteDC( hdc );
1032 return ret;
1035 /****************************************************************************
1036 * @ [GDI32.103]
1038 * This should load the correct driver for lpszDevice and calls this driver's
1039 * AdvancedSetupDialog proc.
1041 INT WINAPI GDI_CallAdvancedSetupDialog16( HWND hwnd, LPSTR lpszDevice,
1042 LPDEVMODEA devin, LPDEVMODEA devout )
1044 TRACE("(%p, %s, %p, %p)\n", hwnd, lpszDevice, devin, devout );
1045 return -1;
1048 /*****************************************************************************
1049 * @ [GDI32.104]
1051 * This should load the correct driver for lpszDevice and calls this driver's
1052 * DeviceCapabilities proc.
1054 * FIXME: convert DeviceCapabilities to unicode in the driver interface
1056 DWORD WINAPI GDI_CallDeviceCapabilities16( LPCSTR lpszDevice, LPCSTR lpszPort,
1057 WORD fwCapability, LPSTR lpszOutput,
1058 LPDEVMODEA lpdm )
1060 WCHAR deviceW[300];
1061 WCHAR bufW[300];
1062 char buf[300];
1063 HDC hdc;
1064 DC *dc;
1065 INT ret = -1;
1067 TRACE("(%s, %s, %d, %p, %p)\n", lpszDevice, lpszPort, fwCapability, lpszOutput, lpdm );
1069 if (!lpszDevice) return -1;
1070 if (!MultiByteToWideChar(CP_ACP, 0, lpszDevice, -1, deviceW, 300)) return -1;
1072 if(!DRIVER_GetDriverName( deviceW, bufW, 300 )) return -1;
1074 if (!WideCharToMultiByte(CP_ACP, 0, bufW, -1, buf, 300, NULL, NULL)) return -1;
1076 if (!(hdc = CreateICA( buf, lpszDevice, lpszPort, NULL ))) return -1;
1078 if ((dc = get_dc_ptr( hdc )))
1080 PHYSDEV physdev = GET_DC_PHYSDEV( dc, pDeviceCapabilities );
1081 ret = physdev->funcs->pDeviceCapabilities( buf, lpszDevice, lpszPort,
1082 fwCapability, lpszOutput, lpdm );
1083 release_dc_ptr( dc );
1085 DeleteDC( hdc );
1086 return ret;
1090 /************************************************************************
1091 * Escape [GDI32.@]
1093 INT WINAPI Escape( HDC hdc, INT escape, INT in_count, LPCSTR in_data, LPVOID out_data )
1095 INT ret;
1096 POINT *pt;
1098 switch (escape)
1100 case ABORTDOC:
1101 return AbortDoc( hdc );
1103 case ENDDOC:
1104 return EndDoc( hdc );
1106 case GETPHYSPAGESIZE:
1107 pt = out_data;
1108 pt->x = GetDeviceCaps( hdc, PHYSICALWIDTH );
1109 pt->y = GetDeviceCaps( hdc, PHYSICALHEIGHT );
1110 return 1;
1112 case GETPRINTINGOFFSET:
1113 pt = out_data;
1114 pt->x = GetDeviceCaps( hdc, PHYSICALOFFSETX );
1115 pt->y = GetDeviceCaps( hdc, PHYSICALOFFSETY );
1116 return 1;
1118 case GETSCALINGFACTOR:
1119 pt = out_data;
1120 pt->x = GetDeviceCaps( hdc, SCALINGFACTORX );
1121 pt->y = GetDeviceCaps( hdc, SCALINGFACTORY );
1122 return 1;
1124 case NEWFRAME:
1125 return EndPage( hdc );
1127 case SETABORTPROC:
1128 return SetAbortProc( hdc, (ABORTPROC)in_data );
1130 case STARTDOC:
1132 DOCINFOA doc;
1133 char *name = NULL;
1135 /* in_data may not be 0 terminated so we must copy it */
1136 if (in_data)
1138 name = HeapAlloc( GetProcessHeap(), 0, in_count+1 );
1139 memcpy( name, in_data, in_count );
1140 name[in_count] = 0;
1142 /* out_data is actually a pointer to the DocInfo structure and used as
1143 * a second input parameter */
1144 if (out_data) doc = *(DOCINFOA *)out_data;
1145 else
1147 doc.cbSize = sizeof(doc);
1148 doc.lpszOutput = NULL;
1149 doc.lpszDatatype = NULL;
1150 doc.fwType = 0;
1152 doc.lpszDocName = name;
1153 ret = StartDocA( hdc, &doc );
1154 HeapFree( GetProcessHeap(), 0, name );
1155 if (ret > 0) ret = StartPage( hdc );
1156 return ret;
1159 case QUERYESCSUPPORT:
1161 const INT *ptr = (const INT *)in_data;
1162 if (in_count < sizeof(INT)) return 0;
1163 switch(*ptr)
1165 case ABORTDOC:
1166 case ENDDOC:
1167 case GETPHYSPAGESIZE:
1168 case GETPRINTINGOFFSET:
1169 case GETSCALINGFACTOR:
1170 case NEWFRAME:
1171 case QUERYESCSUPPORT:
1172 case SETABORTPROC:
1173 case STARTDOC:
1174 return TRUE;
1176 break;
1180 /* if not handled internally, pass it to the driver */
1181 return ExtEscape( hdc, escape, in_count, in_data, 0, out_data );
1185 /******************************************************************************
1186 * ExtEscape [GDI32.@]
1188 * Access capabilities of a particular device that are not available through GDI.
1190 * PARAMS
1191 * hdc [I] Handle to device context
1192 * nEscape [I] Escape function
1193 * cbInput [I] Number of bytes in input structure
1194 * lpszInData [I] Pointer to input structure
1195 * cbOutput [I] Number of bytes in output structure
1196 * lpszOutData [O] Pointer to output structure
1198 * RETURNS
1199 * Success: >0
1200 * Not implemented: 0
1201 * Failure: <0
1203 INT WINAPI ExtEscape( HDC hdc, INT nEscape, INT cbInput, LPCSTR lpszInData,
1204 INT cbOutput, LPSTR lpszOutData )
1206 INT ret = 0;
1207 DC * dc = get_dc_ptr( hdc );
1209 if (dc)
1211 PHYSDEV physdev = GET_DC_PHYSDEV( dc, pExtEscape );
1212 update_dc( dc );
1213 ret = physdev->funcs->pExtEscape( physdev, nEscape, cbInput, lpszInData, cbOutput, lpszOutData );
1214 release_dc_ptr( dc );
1216 return ret;
1220 /*******************************************************************
1221 * DrawEscape [GDI32.@]
1225 INT WINAPI DrawEscape(HDC hdc, INT nEscape, INT cbInput, LPCSTR lpszInData)
1227 FIXME("DrawEscape, stub\n");
1228 return 0;
1231 /*******************************************************************
1232 * NamedEscape [GDI32.@]
1234 INT WINAPI NamedEscape( HDC hdc, LPCWSTR pDriver, INT nEscape, INT cbInput, LPCSTR lpszInData,
1235 INT cbOutput, LPSTR lpszOutData )
1237 FIXME("(%p, %s, %d, %d, %p, %d, %p)\n",
1238 hdc, wine_dbgstr_w(pDriver), nEscape, cbInput, lpszInData, cbOutput,
1239 lpszOutData);
1240 return 0;
1243 /*******************************************************************
1244 * DdQueryDisplaySettingsUniqueness [GDI32.@]
1245 * GdiEntry13 [GDI32.@]
1247 ULONG WINAPI DdQueryDisplaySettingsUniqueness(VOID)
1249 static int warn_once;
1251 if (!warn_once++)
1252 FIXME("stub\n");
1253 return 0;