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
23 #include "wine/port.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
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 /**********************************************************************
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;
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;
90 /**********************************************************************
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;
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 );
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;
124 if (!(driver = create_driver( module )))
126 MESSAGE( "Could not create graphics driver '%s'\n", buffer );
127 FreeLibrary( module );
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 /**********************************************************************
143 const struct gdi_dc_funcs *DRIVER_load_driver( LPCWSTR name )
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 );
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 );
182 list_add_head( &drivers, &driver->entry );
183 TRACE( "loaded driver %p for %s\n", driver, debugstr_w(name) );
185 LeaveCriticalSection( &driver_section );
186 return driver->funcs;
190 static INT nulldrv_AbortDoc( PHYSDEV dev )
195 static BOOL nulldrv_Arc( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
196 INT xstart, INT ystart, INT xend, INT yend )
201 static INT nulldrv_ChoosePixelFormat( PHYSDEV dev, const PIXELFORMATDESCRIPTOR *descr )
206 static BOOL nulldrv_Chord( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
207 INT xstart, INT ystart, INT xend, INT yend )
212 static BOOL nulldrv_CreateBitmap( PHYSDEV dev, HBITMAP bitmap )
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 */
230 static HBITMAP nulldrv_CreateDIBSection( PHYSDEV dev, HBITMAP bitmap, BITMAPINFO *info, UINT usage )
235 static BOOL nulldrv_DeleteBitmap( HBITMAP bitmap )
240 static BOOL nulldrv_DeleteDC( PHYSDEV dev )
242 assert(0); /* should never be called */
246 static BOOL nulldrv_DeleteObject( PHYSDEV dev, HGDIOBJ obj )
251 static INT nulldrv_DescribePixelFormat( PHYSDEV dev, INT format, UINT size, PIXELFORMATDESCRIPTOR * descr )
256 static DWORD nulldrv_DeviceCapabilities( LPSTR buffer, LPCSTR device, LPCSTR port,
257 WORD cap, LPSTR output, DEVMODEA *devmode )
262 static BOOL nulldrv_Ellipse( PHYSDEV dev, INT left, INT top, INT right, INT bottom )
267 static INT nulldrv_EndDoc( PHYSDEV dev )
272 static INT nulldrv_EndPage( PHYSDEV dev )
277 static BOOL nulldrv_EnumFonts( PHYSDEV dev, LOGFONTW *logfont, FONTENUMPROCW proc, LPARAM lParam )
282 static INT nulldrv_EnumICMProfiles( PHYSDEV dev, ICMENUMPROCW func, LPARAM lparam )
287 static INT nulldrv_ExtDeviceMode( LPSTR buffer, HWND hwnd, DEVMODEA *output, LPSTR device,
288 LPSTR port, DEVMODEA *input, LPSTR profile, DWORD mode )
293 static INT nulldrv_ExtEscape( PHYSDEV dev, INT escape, INT in_size, const void *in_data,
294 INT out_size, void *out_data )
299 static BOOL nulldrv_ExtFloodFill( PHYSDEV dev, INT x, INT y, COLORREF color, UINT type )
304 static BOOL nulldrv_FontIsLinked( PHYSDEV dev )
309 static BOOL nulldrv_GdiComment( PHYSDEV dev, UINT size, const BYTE *data )
314 static BOOL nulldrv_GdiRealizationInfo( PHYSDEV dev, void *info )
319 static BOOL nulldrv_GetCharABCWidths( PHYSDEV dev, UINT first, UINT last, LPABC abc )
324 static BOOL nulldrv_GetCharABCWidthsI( PHYSDEV dev, UINT first, UINT count, WORD *indices, LPABC abc )
329 static BOOL nulldrv_GetCharWidth( PHYSDEV dev, UINT first, UINT last, INT *buffer )
334 static INT nulldrv_GetDeviceCaps( PHYSDEV dev, INT cap )
336 switch (cap) /* return meaningful values for some entries */
338 case HORZRES: return 640;
339 case VERTRES: return 480;
340 case BITSPIXEL: return 1;
341 case PLANES: return 1;
342 case NUMCOLORS: return 2;
343 case ASPECTX: return 36;
344 case ASPECTY: return 36;
345 case ASPECTXY: return 51;
346 case LOGPIXELSX: return 72;
347 case LOGPIXELSY: return 72;
348 case SIZEPALETTE: return 2;
349 case TEXTCAPS: return (TC_OP_CHARACTER | TC_OP_STROKE | TC_CP_STROKE |
350 TC_CR_ANY | TC_SF_X_YINDEP | TC_SA_DOUBLE | TC_SA_INTEGER |
351 TC_SA_CONTIN | TC_UA_ABLE | TC_SO_ABLE | TC_RA_ABLE | TC_VA_ABLE);
356 static BOOL nulldrv_GetDeviceGammaRamp( PHYSDEV dev, void *ramp )
361 static DWORD nulldrv_GetFontData( PHYSDEV dev, DWORD table, DWORD offset, LPVOID buffer, DWORD length )
366 static DWORD nulldrv_GetFontUnicodeRanges( PHYSDEV dev, LPGLYPHSET glyphs )
371 static DWORD nulldrv_GetGlyphIndices( PHYSDEV dev, LPCWSTR str, INT count, LPWORD indices, DWORD flags )
376 static DWORD nulldrv_GetGlyphOutline( PHYSDEV dev, UINT ch, UINT format, LPGLYPHMETRICS metrics,
377 DWORD size, LPVOID buffer, const MAT2 *mat )
382 static BOOL nulldrv_GetICMProfile( PHYSDEV dev, LPDWORD size, LPWSTR filename )
387 static DWORD nulldrv_GetKerningPairs( PHYSDEV dev, DWORD count, LPKERNINGPAIR pairs )
392 static UINT nulldrv_GetOutlineTextMetrics( PHYSDEV dev, UINT size, LPOUTLINETEXTMETRICW otm )
397 static COLORREF nulldrv_GetPixel( PHYSDEV dev, INT x, INT y )
402 static INT nulldrv_GetPixelFormat( PHYSDEV dev )
407 static UINT nulldrv_GetSystemPaletteEntries( PHYSDEV dev, UINT start, UINT count, PALETTEENTRY *entries )
412 static UINT nulldrv_GetTextCharsetInfo( PHYSDEV dev, LPFONTSIGNATURE fs, DWORD flags )
414 return DEFAULT_CHARSET;
417 static BOOL nulldrv_GetTextExtentExPoint( PHYSDEV dev, LPCWSTR str, INT count, INT max_ext,
418 INT *fit, INT *dx, SIZE *size )
423 static BOOL nulldrv_GetTextExtentExPointI( PHYSDEV dev, const WORD *indices, INT count, INT max_ext,
424 INT *fit, INT *dx, SIZE *size )
429 static INT nulldrv_GetTextFace( PHYSDEV dev, INT size, LPWSTR name )
433 HFONT hfont = GetCurrentObject( dev->hdc, OBJ_FONT );
435 if (GetObjectW( hfont, sizeof(font), &font ))
437 ret = strlenW( font.lfFaceName ) + 1;
440 lstrcpynW( name, font.lfFaceName, size );
441 ret = min( size, ret );
447 static BOOL nulldrv_GetTextMetrics( PHYSDEV dev, TEXTMETRICW *metrics )
452 static BOOL nulldrv_LineTo( PHYSDEV dev, INT x, INT y )
457 static BOOL nulldrv_MoveTo( PHYSDEV dev, INT x, INT y )
462 static BOOL nulldrv_PaintRgn( PHYSDEV dev, HRGN rgn )
467 static BOOL nulldrv_PatBlt( PHYSDEV dev, struct bitblt_coords *dst, DWORD rop )
472 static BOOL nulldrv_Pie( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
473 INT xstart, INT ystart, INT xend, INT yend )
478 static BOOL nulldrv_PolyPolygon( PHYSDEV dev, const POINT *points, const INT *counts, UINT polygons )
480 /* FIXME: could be implemented with Polygon */
484 static BOOL nulldrv_PolyPolyline( PHYSDEV dev, const POINT *points, const DWORD *counts, DWORD lines )
486 /* FIXME: could be implemented with Polyline */
490 static BOOL nulldrv_Polygon( PHYSDEV dev, const POINT *points, INT count )
495 static BOOL nulldrv_Polyline( PHYSDEV dev, const POINT *points, INT count )
500 static UINT nulldrv_RealizeDefaultPalette( PHYSDEV dev )
505 static UINT nulldrv_RealizePalette( PHYSDEV dev, HPALETTE palette, BOOL primary )
510 static BOOL nulldrv_Rectangle( PHYSDEV dev, INT left, INT top, INT right, INT bottom )
515 static HDC nulldrv_ResetDC( PHYSDEV dev, const DEVMODEW *devmode )
520 static BOOL nulldrv_RoundRect( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
521 INT ell_width, INT ell_height )
526 static HBITMAP nulldrv_SelectBitmap( PHYSDEV dev, HBITMAP bitmap )
531 static HBRUSH nulldrv_SelectBrush( PHYSDEV dev, HBRUSH brush, HBITMAP bitmap,
532 const BITMAPINFO *info, void *bits, UINT usage )
537 static HFONT nulldrv_SelectFont( PHYSDEV dev, HFONT font )
542 static HPALETTE nulldrv_SelectPalette( PHYSDEV dev, HPALETTE palette, BOOL bkgnd )
547 static HPEN nulldrv_SelectPen( PHYSDEV dev, HPEN pen )
552 static INT nulldrv_SetArcDirection( PHYSDEV dev, INT dir )
557 static COLORREF nulldrv_SetBkColor( PHYSDEV dev, COLORREF color )
562 static INT nulldrv_SetBkMode( PHYSDEV dev, INT mode )
567 static COLORREF nulldrv_SetDCBrushColor( PHYSDEV dev, COLORREF color )
572 static COLORREF nulldrv_SetDCPenColor( PHYSDEV dev, COLORREF color )
577 static UINT nulldrv_SetDIBColorTable( PHYSDEV dev, UINT pos, UINT count, const RGBQUAD *colors )
582 static void nulldrv_SetDeviceClipping( PHYSDEV dev, HRGN vis_rgn, HRGN clip_rgn )
586 static DWORD nulldrv_SetLayout( PHYSDEV dev, DWORD layout )
591 static BOOL nulldrv_SetDeviceGammaRamp( PHYSDEV dev, void *ramp )
596 static DWORD nulldrv_SetMapperFlags( PHYSDEV dev, DWORD flags )
601 static COLORREF nulldrv_SetPixel( PHYSDEV dev, INT x, INT y, COLORREF color )
606 static BOOL nulldrv_SetPixelFormat( PHYSDEV dev, INT format, const PIXELFORMATDESCRIPTOR *descr )
611 static INT nulldrv_SetPolyFillMode( PHYSDEV dev, INT mode )
616 static INT nulldrv_SetROP2( PHYSDEV dev, INT rop )
621 static INT nulldrv_SetRelAbs( PHYSDEV dev, INT mode )
626 static INT nulldrv_SetStretchBltMode( PHYSDEV dev, INT mode )
631 static UINT nulldrv_SetTextAlign( PHYSDEV dev, UINT align )
636 static INT nulldrv_SetTextCharacterExtra( PHYSDEV dev, INT extra )
641 static COLORREF nulldrv_SetTextColor( PHYSDEV dev, COLORREF color )
646 static BOOL nulldrv_SetTextJustification( PHYSDEV dev, INT extra, INT breaks )
651 static INT nulldrv_StartDoc( PHYSDEV dev, const DOCINFOW *info )
656 static INT nulldrv_StartPage( PHYSDEV dev )
661 static BOOL nulldrv_SwapBuffers( PHYSDEV dev )
666 static BOOL nulldrv_UnrealizePalette( HPALETTE palette )
671 static BOOL nulldrv_wglCopyContext( HGLRC ctx_src, HGLRC ctx_dst, UINT mask )
676 static HGLRC nulldrv_wglCreateContext( PHYSDEV dev )
681 static HGLRC nulldrv_wglCreateContextAttribsARB( PHYSDEV dev, HGLRC share_ctx, const int *attribs )
686 static BOOL nulldrv_wglDeleteContext( HGLRC ctx )
691 static PROC nulldrv_wglGetProcAddress( LPCSTR name )
696 static HDC nulldrv_wglGetPbufferDCARB( PHYSDEV dev, void *pbuffer )
701 static BOOL nulldrv_wglMakeCurrent( PHYSDEV dev, HGLRC ctx )
706 static BOOL nulldrv_wglMakeContextCurrentARB( PHYSDEV dev_draw, PHYSDEV dev_read, HGLRC ctx )
711 static BOOL nulldrv_wglSetPixelFormatWINE( PHYSDEV dev, INT format, const PIXELFORMATDESCRIPTOR *descr )
716 static BOOL nulldrv_wglShareLists( HGLRC ctx1, HGLRC ctx2 )
721 static BOOL nulldrv_wglUseFontBitmapsA( PHYSDEV dev, DWORD start, DWORD count, DWORD base )
726 static BOOL nulldrv_wglUseFontBitmapsW( PHYSDEV dev, DWORD start, DWORD count, DWORD base )
731 const struct gdi_dc_funcs null_driver =
733 nulldrv_AbortDoc, /* pAbortDoc */
734 nulldrv_AbortPath, /* pAbortPath */
735 nulldrv_AlphaBlend, /* pAlphaBlend */
736 nulldrv_AngleArc, /* pAngleArc */
737 nulldrv_Arc, /* pArc */
738 nulldrv_ArcTo, /* pArcTo */
739 nulldrv_BeginPath, /* pBeginPath */
740 nulldrv_BlendImage, /* pBlendImage */
741 nulldrv_ChoosePixelFormat, /* pChoosePixelFormat */
742 nulldrv_Chord, /* pChord */
743 nulldrv_CloseFigure, /* pCloseFigure */
744 nulldrv_CopyBitmap, /* pCopyBitmap */
745 nulldrv_CreateBitmap, /* pCreateBitmap */
746 nulldrv_CreateCompatibleDC, /* pCreateCompatibleDC */
747 nulldrv_CreateDC, /* pCreateDC */
748 nulldrv_CreateDIBSection, /* pCreateDIBSection */
749 nulldrv_DeleteBitmap, /* pDeleteBitmap */
750 nulldrv_DeleteDC, /* pDeleteDC */
751 nulldrv_DeleteObject, /* pDeleteObject */
752 nulldrv_DescribePixelFormat, /* pDescribePixelFormat */
753 nulldrv_DeviceCapabilities, /* pDeviceCapabilities */
754 nulldrv_Ellipse, /* pEllipse */
755 nulldrv_EndDoc, /* pEndDoc */
756 nulldrv_EndPage, /* pEndPage */
757 nulldrv_EndPath, /* pEndPath */
758 nulldrv_EnumFonts, /* pEnumFonts */
759 nulldrv_EnumICMProfiles, /* pEnumICMProfiles */
760 nulldrv_ExcludeClipRect, /* pExcludeClipRect */
761 nulldrv_ExtDeviceMode, /* pExtDeviceMode */
762 nulldrv_ExtEscape, /* pExtEscape */
763 nulldrv_ExtFloodFill, /* pExtFloodFill */
764 nulldrv_ExtSelectClipRgn, /* pExtSelectClipRgn */
765 nulldrv_ExtTextOut, /* pExtTextOut */
766 nulldrv_FillPath, /* pFillPath */
767 nulldrv_FillRgn, /* pFillRgn */
768 nulldrv_FlattenPath, /* pFlattenPath */
769 nulldrv_FontIsLinked, /* pFontIsLinked */
770 nulldrv_FrameRgn, /* pFrameRgn */
771 nulldrv_GdiComment, /* pGdiComment */
772 nulldrv_GdiRealizationInfo, /* pGdiRealizationInfo */
773 nulldrv_GetCharABCWidths, /* pGetCharABCWidths */
774 nulldrv_GetCharABCWidthsI, /* pGetCharABCWidthsI */
775 nulldrv_GetCharWidth, /* pGetCharWidth */
776 nulldrv_GetDeviceCaps, /* pGetDeviceCaps */
777 nulldrv_GetDeviceGammaRamp, /* pGetDeviceGammaRamp */
778 nulldrv_GetFontData, /* pGetFontData */
779 nulldrv_GetFontUnicodeRanges, /* pGetFontUnicodeRanges */
780 nulldrv_GetGlyphIndices, /* pGetGlyphIndices */
781 nulldrv_GetGlyphOutline, /* pGetGlyphOutline */
782 nulldrv_GetICMProfile, /* pGetICMProfile */
783 nulldrv_GetImage, /* pGetImage */
784 nulldrv_GetKerningPairs, /* pGetKerningPairs */
785 nulldrv_GetNearestColor, /* pGetNearestColor */
786 nulldrv_GetOutlineTextMetrics, /* pGetOutlineTextMetrics */
787 nulldrv_GetPixel, /* pGetPixel */
788 nulldrv_GetPixelFormat, /* pGetPixelFormat */
789 nulldrv_GetSystemPaletteEntries, /* pGetSystemPaletteEntries */
790 nulldrv_GetTextCharsetInfo, /* pGetTextCharsetInfo */
791 nulldrv_GetTextExtentExPoint, /* pGetTextExtentExPoint */
792 nulldrv_GetTextExtentExPointI, /* pGetTextExtentExPointI */
793 nulldrv_GetTextFace, /* pGetTextFace */
794 nulldrv_GetTextMetrics, /* pGetTextMetrics */
795 nulldrv_GradientFill, /* pGradientFill */
796 nulldrv_IntersectClipRect, /* pIntersectClipRect */
797 nulldrv_InvertRgn, /* pInvertRgn */
798 nulldrv_LineTo, /* pLineTo */
799 nulldrv_ModifyWorldTransform, /* pModifyWorldTransform */
800 nulldrv_MoveTo, /* pMoveTo */
801 nulldrv_OffsetClipRgn, /* pOffsetClipRgn */
802 nulldrv_OffsetViewportOrgEx, /* pOffsetViewportOrg */
803 nulldrv_OffsetWindowOrgEx, /* pOffsetWindowOrg */
804 nulldrv_PaintRgn, /* pPaintRgn */
805 nulldrv_PatBlt, /* pPatBlt */
806 nulldrv_Pie, /* pPie */
807 nulldrv_PolyBezier, /* pPolyBezier */
808 nulldrv_PolyBezierTo, /* pPolyBezierTo */
809 nulldrv_PolyDraw, /* pPolyDraw */
810 nulldrv_PolyPolygon, /* pPolyPolygon */
811 nulldrv_PolyPolyline, /* pPolyPolyline */
812 nulldrv_Polygon, /* pPolygon */
813 nulldrv_Polyline, /* pPolyline */
814 nulldrv_PolylineTo, /* pPolylineTo */
815 nulldrv_PutImage, /* pPutImage */
816 nulldrv_RealizeDefaultPalette, /* pRealizeDefaultPalette */
817 nulldrv_RealizePalette, /* pRealizePalette */
818 nulldrv_Rectangle, /* pRectangle */
819 nulldrv_ResetDC, /* pResetDC */
820 nulldrv_RestoreDC, /* pRestoreDC */
821 nulldrv_RoundRect, /* pRoundRect */
822 nulldrv_SaveDC, /* pSaveDC */
823 nulldrv_ScaleViewportExtEx, /* pScaleViewportExt */
824 nulldrv_ScaleWindowExtEx, /* pScaleWindowExt */
825 nulldrv_SelectBitmap, /* pSelectBitmap */
826 nulldrv_SelectBrush, /* pSelectBrush */
827 nulldrv_SelectClipPath, /* pSelectClipPath */
828 nulldrv_SelectFont, /* pSelectFont */
829 nulldrv_SelectPalette, /* pSelectPalette */
830 nulldrv_SelectPen, /* pSelectPen */
831 nulldrv_SetArcDirection, /* pSetArcDirection */
832 nulldrv_SetBkColor, /* pSetBkColor */
833 nulldrv_SetBkMode, /* pSetBkMode */
834 nulldrv_SetDCBrushColor, /* pSetDCBrushColor */
835 nulldrv_SetDCPenColor, /* pSetDCPenColor */
836 nulldrv_SetDIBColorTable, /* pSetDIBColorTable */
837 nulldrv_SetDIBitsToDevice, /* pSetDIBitsToDevice */
838 nulldrv_SetDeviceClipping, /* pSetDeviceClipping */
839 nulldrv_SetDeviceGammaRamp, /* pSetDeviceGammaRamp */
840 nulldrv_SetLayout, /* pSetLayout */
841 nulldrv_SetMapMode, /* pSetMapMode */
842 nulldrv_SetMapperFlags, /* pSetMapperFlags */
843 nulldrv_SetPixel, /* pSetPixel */
844 nulldrv_SetPixelFormat, /* pSetPixelFormat */
845 nulldrv_SetPolyFillMode, /* pSetPolyFillMode */
846 nulldrv_SetROP2, /* pSetROP2 */
847 nulldrv_SetRelAbs, /* pSetRelAbs */
848 nulldrv_SetStretchBltMode, /* pSetStretchBltMode */
849 nulldrv_SetTextAlign, /* pSetTextAlign */
850 nulldrv_SetTextCharacterExtra, /* pSetTextCharacterExtra */
851 nulldrv_SetTextColor, /* pSetTextColor */
852 nulldrv_SetTextJustification, /* pSetTextJustification */
853 nulldrv_SetViewportExtEx, /* pSetViewportExt */
854 nulldrv_SetViewportOrgEx, /* pSetViewportOrg */
855 nulldrv_SetWindowExtEx, /* pSetWindowExt */
856 nulldrv_SetWindowOrgEx, /* pSetWindowOrg */
857 nulldrv_SetWorldTransform, /* pSetWorldTransform */
858 nulldrv_StartDoc, /* pStartDoc */
859 nulldrv_StartPage, /* pStartPage */
860 nulldrv_StretchBlt, /* pStretchBlt */
861 nulldrv_StretchDIBits, /* pStretchDIBits */
862 nulldrv_StrokeAndFillPath, /* pStrokeAndFillPath */
863 nulldrv_StrokePath, /* pStrokePath */
864 nulldrv_SwapBuffers, /* pSwapBuffers */
865 nulldrv_UnrealizePalette, /* pUnrealizePalette */
866 nulldrv_WidenPath, /* pWidenPath */
867 nulldrv_wglCopyContext, /* pwglCopyContext */
868 nulldrv_wglCreateContext, /* pwglCreateContext */
869 nulldrv_wglCreateContextAttribsARB, /* pwglCreateContextAttribsARB */
870 nulldrv_wglDeleteContext, /* pwglDeleteContext */
871 nulldrv_wglGetPbufferDCARB, /* pwglGetPbufferDCARB */
872 nulldrv_wglGetProcAddress, /* pwglGetProcAddress */
873 nulldrv_wglMakeContextCurrentARB, /* pwglMakeContextCurrentARB */
874 nulldrv_wglMakeCurrent, /* pwglMakeCurrent */
875 nulldrv_wglSetPixelFormatWINE, /* pwglSetPixelFormatWINE */
876 nulldrv_wglShareLists, /* pwglShareLists */
877 nulldrv_wglUseFontBitmapsA, /* pwglUseFontBitmapsA */
878 nulldrv_wglUseFontBitmapsW, /* pwglUseFontBitmapsW */
882 /*****************************************************************************
883 * DRIVER_GetDriverName
886 BOOL DRIVER_GetDriverName( LPCWSTR device, LPWSTR driver, DWORD size )
888 static const WCHAR displayW[] = { 'd','i','s','p','l','a','y',0 };
889 static const WCHAR devicesW[] = { 'd','e','v','i','c','e','s',0 };
890 static const WCHAR display1W[] = {'\\','\\','.','\\','D','I','S','P','L','A','Y','1',0};
891 static const WCHAR empty_strW[] = { 0 };
894 /* display is a special case */
895 if (!strcmpiW( device, displayW ) ||
896 !strcmpiW( device, display1W ))
898 lstrcpynW( driver, displayW, size );
902 size = GetProfileStringW(devicesW, device, empty_strW, driver, size);
904 WARN("Unable to find %s in [devices] section of win.ini\n", debugstr_w(device));
907 p = strchrW(driver, ',');
910 WARN("%s entry in [devices] section of win.ini is malformed.\n", debugstr_w(device));
914 TRACE("Found %s for %s\n", debugstr_w(driver), debugstr_w(device));
919 /***********************************************************************
920 * GdiConvertToDevmodeW (GDI32.@)
922 DEVMODEW * WINAPI GdiConvertToDevmodeW(const DEVMODEA *dmA)
925 WORD dmW_size, dmA_size;
927 dmA_size = dmA->dmSize;
929 /* this is the minimal dmSize that XP accepts */
930 if (dmA_size < FIELD_OFFSET(DEVMODEA, dmFields))
933 if (dmA_size > sizeof(DEVMODEA))
934 dmA_size = sizeof(DEVMODEA);
936 dmW_size = dmA_size + CCHDEVICENAME;
937 if (dmA_size >= FIELD_OFFSET(DEVMODEA, dmFormName) + CCHFORMNAME)
938 dmW_size += CCHFORMNAME;
940 dmW = HeapAlloc(GetProcessHeap(), 0, dmW_size + dmA->dmDriverExtra);
941 if (!dmW) return NULL;
943 MultiByteToWideChar(CP_ACP, 0, (const char*) dmA->dmDeviceName, -1,
944 dmW->dmDeviceName, CCHDEVICENAME);
945 /* copy slightly more, to avoid long computations */
946 memcpy(&dmW->dmSpecVersion, &dmA->dmSpecVersion, dmA_size - CCHDEVICENAME);
948 if (dmA_size >= FIELD_OFFSET(DEVMODEA, dmFormName) + CCHFORMNAME)
950 if (dmA->dmFields & DM_FORMNAME)
951 MultiByteToWideChar(CP_ACP, 0, (const char*) dmA->dmFormName, -1,
952 dmW->dmFormName, CCHFORMNAME);
954 dmW->dmFormName[0] = 0;
956 if (dmA_size > FIELD_OFFSET(DEVMODEA, dmLogPixels))
957 memcpy(&dmW->dmLogPixels, &dmA->dmLogPixels, dmA_size - FIELD_OFFSET(DEVMODEA, dmLogPixels));
960 if (dmA->dmDriverExtra)
961 memcpy((char *)dmW + dmW_size, (const char *)dmA + dmA_size, dmA->dmDriverExtra);
963 dmW->dmSize = dmW_size;
969 /*****************************************************************************
972 * This should thunk to 16-bit and simply call the proc with the given args.
974 INT WINAPI GDI_CallDevInstall16( FARPROC16 lpfnDevInstallProc, HWND hWnd,
975 LPSTR lpModelName, LPSTR OldPort, LPSTR NewPort )
977 FIXME("(%p, %p, %s, %s, %s)\n", lpfnDevInstallProc, hWnd, lpModelName, OldPort, NewPort );
981 /*****************************************************************************
984 * This should load the correct driver for lpszDevice and calls this driver's
985 * ExtDeviceModePropSheet proc.
987 * Note: The driver calls a callback routine for each property sheet page; these
988 * pages are supposed to be filled into the structure pointed to by lpPropSheet.
989 * The layout of this structure is:
995 * HPROPSHEETPAGE pages[10];
998 INT WINAPI GDI_CallExtDeviceModePropSheet16( HWND hWnd, LPCSTR lpszDevice,
999 LPCSTR lpszPort, LPVOID lpPropSheet )
1001 FIXME("(%p, %s, %s, %p)\n", hWnd, lpszDevice, lpszPort, lpPropSheet );
1005 /*****************************************************************************
1008 * This should load the correct driver for lpszDevice and call this driver's
1009 * ExtDeviceMode proc.
1011 * FIXME: convert ExtDeviceMode to unicode in the driver interface
1013 INT WINAPI GDI_CallExtDeviceMode16( HWND hwnd,
1014 LPDEVMODEA lpdmOutput, LPSTR lpszDevice,
1015 LPSTR lpszPort, LPDEVMODEA lpdmInput,
1016 LPSTR lpszProfile, DWORD fwMode )
1025 TRACE("(%p, %p, %s, %s, %p, %s, %d)\n",
1026 hwnd, lpdmOutput, lpszDevice, lpszPort, lpdmInput, lpszProfile, fwMode );
1028 if (!lpszDevice) return -1;
1029 if (!MultiByteToWideChar(CP_ACP, 0, lpszDevice, -1, deviceW, 300)) return -1;
1031 if(!DRIVER_GetDriverName( deviceW, bufW, 300 )) return -1;
1033 if (!WideCharToMultiByte(CP_ACP, 0, bufW, -1, buf, 300, NULL, NULL)) return -1;
1035 if (!(hdc = CreateICA( buf, lpszDevice, lpszPort, NULL ))) return -1;
1037 if ((dc = get_dc_ptr( hdc )))
1039 PHYSDEV physdev = GET_DC_PHYSDEV( dc, pExtDeviceMode );
1040 ret = physdev->funcs->pExtDeviceMode( buf, hwnd, lpdmOutput, lpszDevice, lpszPort,
1041 lpdmInput, lpszProfile, fwMode );
1042 release_dc_ptr( dc );
1048 /****************************************************************************
1051 * This should load the correct driver for lpszDevice and calls this driver's
1052 * AdvancedSetupDialog proc.
1054 INT WINAPI GDI_CallAdvancedSetupDialog16( HWND hwnd, LPSTR lpszDevice,
1055 LPDEVMODEA devin, LPDEVMODEA devout )
1057 TRACE("(%p, %s, %p, %p)\n", hwnd, lpszDevice, devin, devout );
1061 /*****************************************************************************
1064 * This should load the correct driver for lpszDevice and calls this driver's
1065 * DeviceCapabilities proc.
1067 * FIXME: convert DeviceCapabilities to unicode in the driver interface
1069 DWORD WINAPI GDI_CallDeviceCapabilities16( LPCSTR lpszDevice, LPCSTR lpszPort,
1070 WORD fwCapability, LPSTR lpszOutput,
1080 TRACE("(%s, %s, %d, %p, %p)\n", lpszDevice, lpszPort, fwCapability, lpszOutput, lpdm );
1082 if (!lpszDevice) return -1;
1083 if (!MultiByteToWideChar(CP_ACP, 0, lpszDevice, -1, deviceW, 300)) return -1;
1085 if(!DRIVER_GetDriverName( deviceW, bufW, 300 )) return -1;
1087 if (!WideCharToMultiByte(CP_ACP, 0, bufW, -1, buf, 300, NULL, NULL)) return -1;
1089 if (!(hdc = CreateICA( buf, lpszDevice, lpszPort, NULL ))) return -1;
1091 if ((dc = get_dc_ptr( hdc )))
1093 PHYSDEV physdev = GET_DC_PHYSDEV( dc, pDeviceCapabilities );
1094 ret = physdev->funcs->pDeviceCapabilities( buf, lpszDevice, lpszPort,
1095 fwCapability, lpszOutput, lpdm );
1096 release_dc_ptr( dc );
1103 /************************************************************************
1106 INT WINAPI Escape( HDC hdc, INT escape, INT in_count, LPCSTR in_data, LPVOID out_data )
1114 return AbortDoc( hdc );
1117 return EndDoc( hdc );
1119 case GETPHYSPAGESIZE:
1121 pt->x = GetDeviceCaps( hdc, PHYSICALWIDTH );
1122 pt->y = GetDeviceCaps( hdc, PHYSICALHEIGHT );
1125 case GETPRINTINGOFFSET:
1127 pt->x = GetDeviceCaps( hdc, PHYSICALOFFSETX );
1128 pt->y = GetDeviceCaps( hdc, PHYSICALOFFSETY );
1131 case GETSCALINGFACTOR:
1133 pt->x = GetDeviceCaps( hdc, SCALINGFACTORX );
1134 pt->y = GetDeviceCaps( hdc, SCALINGFACTORY );
1138 return EndPage( hdc );
1141 return SetAbortProc( hdc, (ABORTPROC)in_data );
1148 /* in_data may not be 0 terminated so we must copy it */
1151 name = HeapAlloc( GetProcessHeap(), 0, in_count+1 );
1152 memcpy( name, in_data, in_count );
1155 /* out_data is actually a pointer to the DocInfo structure and used as
1156 * a second input parameter */
1157 if (out_data) doc = *(DOCINFOA *)out_data;
1160 doc.cbSize = sizeof(doc);
1161 doc.lpszOutput = NULL;
1162 doc.lpszDatatype = NULL;
1165 doc.lpszDocName = name;
1166 ret = StartDocA( hdc, &doc );
1167 HeapFree( GetProcessHeap(), 0, name );
1168 if (ret > 0) ret = StartPage( hdc );
1172 case QUERYESCSUPPORT:
1174 const INT *ptr = (const INT *)in_data;
1175 if (in_count < sizeof(INT)) return 0;
1180 case GETPHYSPAGESIZE:
1181 case GETPRINTINGOFFSET:
1182 case GETSCALINGFACTOR:
1184 case QUERYESCSUPPORT:
1193 /* if not handled internally, pass it to the driver */
1194 return ExtEscape( hdc, escape, in_count, in_data, 0, out_data );
1198 /******************************************************************************
1199 * ExtEscape [GDI32.@]
1201 * Access capabilities of a particular device that are not available through GDI.
1204 * hdc [I] Handle to device context
1205 * nEscape [I] Escape function
1206 * cbInput [I] Number of bytes in input structure
1207 * lpszInData [I] Pointer to input structure
1208 * cbOutput [I] Number of bytes in output structure
1209 * lpszOutData [O] Pointer to output structure
1213 * Not implemented: 0
1216 INT WINAPI ExtEscape( HDC hdc, INT nEscape, INT cbInput, LPCSTR lpszInData,
1217 INT cbOutput, LPSTR lpszOutData )
1220 DC * dc = get_dc_ptr( hdc );
1224 PHYSDEV physdev = GET_DC_PHYSDEV( dc, pExtEscape );
1226 ret = physdev->funcs->pExtEscape( physdev, nEscape, cbInput, lpszInData, cbOutput, lpszOutData );
1227 release_dc_ptr( dc );
1233 /*******************************************************************
1234 * DrawEscape [GDI32.@]
1238 INT WINAPI DrawEscape(HDC hdc, INT nEscape, INT cbInput, LPCSTR lpszInData)
1240 FIXME("DrawEscape, stub\n");
1244 /*******************************************************************
1245 * NamedEscape [GDI32.@]
1247 INT WINAPI NamedEscape( HDC hdc, LPCWSTR pDriver, INT nEscape, INT cbInput, LPCSTR lpszInData,
1248 INT cbOutput, LPSTR lpszOutData )
1250 FIXME("(%p, %s, %d, %d, %p, %d, %p)\n",
1251 hdc, wine_dbgstr_w(pDriver), nEscape, cbInput, lpszInData, cbOutput,
1256 /*******************************************************************
1257 * DdQueryDisplaySettingsUniqueness [GDI32.@]
1258 * GdiEntry13 [GDI32.@]
1260 ULONG WINAPI DdQueryDisplaySettingsUniqueness(VOID)
1262 static int warn_once;