gdi32: Remove no longer used driver entry points.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Huw Davies <huw@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
2ef5b9720f
commit
3057388ff8
|
@ -393,15 +393,6 @@ void DC_UpdateXforms( DC *dc )
|
|||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* nulldrv_RestoreDC
|
||||
*/
|
||||
BOOL CDECL nulldrv_RestoreDC( PHYSDEV dev, INT level )
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
||||
/***********************************************************************
|
||||
* reset_dc_state
|
||||
*/
|
||||
|
|
|
@ -652,7 +652,6 @@ const struct gdi_dc_funcs dib_driver =
|
|||
NULL, /* pFlattenPath */
|
||||
NULL, /* pFontIsLinked */
|
||||
NULL, /* pFrameRgn */
|
||||
NULL, /* pGdiComment */
|
||||
NULL, /* pGetBoundsRect */
|
||||
NULL, /* pGetCharABCWidths */
|
||||
NULL, /* pGetCharABCWidthsI */
|
||||
|
@ -695,7 +694,6 @@ const struct gdi_dc_funcs dib_driver =
|
|||
NULL, /* pRealizePalette */
|
||||
dibdrv_Rectangle, /* pRectangle */
|
||||
NULL, /* pResetDC */
|
||||
NULL, /* pRestoreDC */
|
||||
dibdrv_RoundRect, /* pRoundRect */
|
||||
dibdrv_SelectBitmap, /* pSelectBitmap */
|
||||
dibdrv_SelectBrush, /* pSelectBrush */
|
||||
|
@ -1223,7 +1221,6 @@ static const struct gdi_dc_funcs window_driver =
|
|||
NULL, /* pFlattenPath */
|
||||
NULL, /* pFontIsLinked */
|
||||
NULL, /* pFrameRgn */
|
||||
NULL, /* pGdiComment */
|
||||
NULL, /* pGetBoundsRect */
|
||||
NULL, /* pGetCharABCWidths */
|
||||
NULL, /* pGetCharABCWidthsI */
|
||||
|
@ -1266,7 +1263,6 @@ static const struct gdi_dc_funcs window_driver =
|
|||
NULL, /* pRealizePalette */
|
||||
windrv_Rectangle, /* pRectangle */
|
||||
NULL, /* pResetDC */
|
||||
NULL, /* pRestoreDC */
|
||||
windrv_RoundRect, /* pRoundRect */
|
||||
NULL, /* pSelectBitmap */
|
||||
NULL, /* pSelectBrush */
|
||||
|
|
|
@ -386,11 +386,6 @@ static BOOL CDECL nulldrv_FontIsLinked( PHYSDEV dev )
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
static BOOL CDECL nulldrv_GdiComment( PHYSDEV dev, UINT size, const BYTE *data )
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static UINT CDECL nulldrv_GetBoundsRect( PHYSDEV dev, RECT *rect, UINT flags )
|
||||
{
|
||||
return DCB_RESET;
|
||||
|
@ -863,7 +858,6 @@ const struct gdi_dc_funcs null_driver =
|
|||
nulldrv_FlattenPath, /* pFlattenPath */
|
||||
nulldrv_FontIsLinked, /* pFontIsLinked */
|
||||
nulldrv_FrameRgn, /* pFrameRgn */
|
||||
nulldrv_GdiComment, /* pGdiComment */
|
||||
nulldrv_GetBoundsRect, /* pGetBoundsRect */
|
||||
nulldrv_GetCharABCWidths, /* pGetCharABCWidths */
|
||||
nulldrv_GetCharABCWidthsI, /* pGetCharABCWidthsI */
|
||||
|
@ -906,7 +900,6 @@ const struct gdi_dc_funcs null_driver =
|
|||
nulldrv_RealizePalette, /* pRealizePalette */
|
||||
nulldrv_Rectangle, /* pRectangle */
|
||||
nulldrv_ResetDC, /* pResetDC */
|
||||
nulldrv_RestoreDC, /* pRestoreDC */
|
||||
nulldrv_RoundRect, /* pRoundRect */
|
||||
nulldrv_SelectBitmap, /* pSelectBitmap */
|
||||
nulldrv_SelectBrush, /* pSelectBrush */
|
||||
|
|
|
@ -66,7 +66,6 @@ static const struct gdi_dc_funcs emfdrv_driver =
|
|||
EMFDRV_FlattenPath, /* pFlattenPath */
|
||||
NULL, /* pFontIsLinked */
|
||||
EMFDRV_FrameRgn, /* pFrameRgn */
|
||||
NULL, /* pGdiComment */
|
||||
NULL, /* pGetBoundsRect */
|
||||
NULL, /* pGetCharABCWidths */
|
||||
NULL, /* pGetCharABCWidthsI */
|
||||
|
@ -109,7 +108,6 @@ static const struct gdi_dc_funcs emfdrv_driver =
|
|||
NULL, /* pRealizePalette */
|
||||
EMFDRV_Rectangle, /* pRectangle */
|
||||
NULL, /* pResetDC */
|
||||
NULL, /* pRestoreDC */
|
||||
EMFDRV_RoundRect, /* pRoundRect */
|
||||
EMFDRV_SelectBitmap, /* pSelectBitmap */
|
||||
NULL, /* pSelectBrush */
|
||||
|
|
|
@ -3843,7 +3843,6 @@ const struct gdi_dc_funcs font_driver =
|
|||
NULL, /* pFlattenPath */
|
||||
font_FontIsLinked, /* pFontIsLinked */
|
||||
NULL, /* pFrameRgn */
|
||||
NULL, /* pGdiComment */
|
||||
NULL, /* pGetBoundsRect */
|
||||
font_GetCharABCWidths, /* pGetCharABCWidths */
|
||||
font_GetCharABCWidthsI, /* pGetCharABCWidthsI */
|
||||
|
@ -3886,7 +3885,6 @@ const struct gdi_dc_funcs font_driver =
|
|||
NULL, /* pRealizePalette */
|
||||
NULL, /* pRectangle */
|
||||
NULL, /* pResetDC */
|
||||
NULL, /* pRestoreDC */
|
||||
NULL, /* pRoundRect */
|
||||
NULL, /* pSelectBitmap */
|
||||
NULL, /* pSelectBrush */
|
||||
|
|
|
@ -577,7 +577,6 @@ extern BOOL CDECL nulldrv_PolyBezier( PHYSDEV dev, const POINT *points, DWORD co
|
|||
extern BOOL CDECL nulldrv_PolyBezierTo( PHYSDEV dev, const POINT *points, DWORD count ) DECLSPEC_HIDDEN;
|
||||
extern BOOL CDECL nulldrv_PolyDraw( PHYSDEV dev, const POINT *points, const BYTE *types, DWORD count ) DECLSPEC_HIDDEN;
|
||||
extern BOOL CDECL nulldrv_PolylineTo( PHYSDEV dev, const POINT *points, INT count ) DECLSPEC_HIDDEN;
|
||||
extern BOOL CDECL nulldrv_RestoreDC( PHYSDEV dev, INT level ) DECLSPEC_HIDDEN;
|
||||
extern BOOL CDECL nulldrv_SelectClipPath( PHYSDEV dev, INT mode ) DECLSPEC_HIDDEN;
|
||||
extern INT CDECL nulldrv_SetDIBitsToDevice( PHYSDEV dev, INT x_dst, INT y_dst, DWORD width, DWORD height,
|
||||
INT x_src, INT y_src, UINT start, UINT lines,
|
||||
|
|
|
@ -2104,7 +2104,6 @@ const struct gdi_dc_funcs path_driver =
|
|||
NULL, /* pFlattenPath */
|
||||
NULL, /* pFontIsLinked */
|
||||
NULL, /* pFrameRgn */
|
||||
NULL, /* pGdiComment */
|
||||
NULL, /* pGetBoundsRect */
|
||||
NULL, /* pGetCharABCWidths */
|
||||
NULL, /* pGetCharABCWidthsI */
|
||||
|
@ -2147,7 +2146,6 @@ const struct gdi_dc_funcs path_driver =
|
|||
NULL, /* pRealizePalette */
|
||||
pathdrv_Rectangle, /* pRectangle */
|
||||
NULL, /* pResetDC */
|
||||
NULL, /* pRestoreDC */
|
||||
pathdrv_RoundRect, /* pRoundRect */
|
||||
NULL, /* pSelectBitmap */
|
||||
NULL, /* pSelectBrush */
|
||||
|
|
|
@ -313,7 +313,6 @@ static const struct gdi_dc_funcs android_drv_funcs =
|
|||
NULL, /* pFlattenPath */
|
||||
NULL, /* pFontIsLinked */
|
||||
NULL, /* pFrameRgn */
|
||||
NULL, /* pGdiComment */
|
||||
NULL, /* pGetBoundsRect */
|
||||
NULL, /* pGetCharABCWidths */
|
||||
NULL, /* pGetCharABCWidthsI */
|
||||
|
@ -356,7 +355,6 @@ static const struct gdi_dc_funcs android_drv_funcs =
|
|||
NULL, /* pRealizePalette */
|
||||
NULL, /* pRectangle */
|
||||
NULL, /* pResetDC */
|
||||
NULL, /* pRestoreDC */
|
||||
NULL, /* pRoundRect */
|
||||
NULL, /* pSelectBitmap */
|
||||
NULL, /* pSelectBrush */
|
||||
|
|
|
@ -293,7 +293,6 @@ static const struct gdi_dc_funcs macdrv_funcs =
|
|||
NULL, /* pFlattenPath */
|
||||
NULL, /* pFontIsLinked */
|
||||
NULL, /* pFrameRgn */
|
||||
NULL, /* pGdiComment */
|
||||
NULL, /* pGetBoundsRect */
|
||||
NULL, /* pGetCharABCWidths */
|
||||
NULL, /* pGetCharABCWidthsI */
|
||||
|
@ -336,7 +335,6 @@ static const struct gdi_dc_funcs macdrv_funcs =
|
|||
NULL, /* pRealizePalette */
|
||||
NULL, /* pRectangle */
|
||||
NULL, /* pResetDC */
|
||||
NULL, /* pRestoreDC */
|
||||
NULL, /* pRoundRect */
|
||||
NULL, /* pSelectBitmap */
|
||||
NULL, /* pSelectBrush */
|
||||
|
|
|
@ -807,7 +807,6 @@ static const struct gdi_dc_funcs psdrv_funcs =
|
|||
NULL, /* pFlattenPath */
|
||||
NULL, /* pFontIsLinked */
|
||||
NULL, /* pFrameRgn */
|
||||
NULL, /* pGdiComment */
|
||||
NULL, /* pGetBoundsRect */
|
||||
NULL, /* pGetCharABCWidths */
|
||||
NULL, /* pGetCharABCWidthsI */
|
||||
|
@ -850,7 +849,6 @@ static const struct gdi_dc_funcs psdrv_funcs =
|
|||
NULL, /* pRealizePalette */
|
||||
PSDRV_Rectangle, /* pRectangle */
|
||||
PSDRV_ResetDC, /* pResetDC */
|
||||
NULL, /* pRestoreDC */
|
||||
PSDRV_RoundRect, /* pRoundRect */
|
||||
NULL, /* pSelectBitmap */
|
||||
PSDRV_SelectBrush, /* pSelectBrush */
|
||||
|
|
|
@ -372,7 +372,6 @@ static const struct gdi_dc_funcs x11drv_funcs =
|
|||
NULL, /* pFlattenPath */
|
||||
NULL, /* pFontIsLinked */
|
||||
NULL, /* pFrameRgn */
|
||||
NULL, /* pGdiComment */
|
||||
NULL, /* pGetBoundsRect */
|
||||
NULL, /* pGetCharABCWidths */
|
||||
NULL, /* pGetCharABCWidthsI */
|
||||
|
@ -415,7 +414,6 @@ static const struct gdi_dc_funcs x11drv_funcs =
|
|||
X11DRV_RealizePalette, /* pRealizePalette */
|
||||
X11DRV_Rectangle, /* pRectangle */
|
||||
NULL, /* pResetDC */
|
||||
NULL, /* pRestoreDC */
|
||||
X11DRV_RoundRect, /* pRoundRect */
|
||||
NULL, /* pSelectBitmap */
|
||||
X11DRV_SelectBrush, /* pSelectBrush */
|
||||
|
|
|
@ -2184,7 +2184,6 @@ static const struct gdi_dc_funcs xrender_funcs =
|
|||
NULL, /* pFlattenPath */
|
||||
NULL, /* pFontIsLinked */
|
||||
NULL, /* pFrameRgn */
|
||||
NULL, /* pGdiComment */
|
||||
NULL, /* pGetBoundsRect */
|
||||
NULL, /* pGetCharABCWidths */
|
||||
NULL, /* pGetCharABCWidthsI */
|
||||
|
@ -2227,7 +2226,6 @@ static const struct gdi_dc_funcs xrender_funcs =
|
|||
NULL, /* pRealizePalette */
|
||||
NULL, /* pRectangle */
|
||||
NULL, /* pResetDC */
|
||||
NULL, /* pRestoreDC */
|
||||
NULL, /* pRoundRect */
|
||||
NULL, /* pSelectBitmap */
|
||||
xrenderdrv_SelectBrush, /* pSelectBrush */
|
||||
|
|
|
@ -97,7 +97,6 @@ struct gdi_dc_funcs
|
|||
BOOL (CDECL *pFlattenPath)(PHYSDEV);
|
||||
BOOL (CDECL *pFontIsLinked)(PHYSDEV);
|
||||
BOOL (CDECL *pFrameRgn)(PHYSDEV,HRGN,HBRUSH,INT,INT);
|
||||
BOOL (CDECL *pGdiComment)(PHYSDEV,UINT,const BYTE*);
|
||||
UINT (CDECL *pGetBoundsRect)(PHYSDEV,RECT*,UINT);
|
||||
BOOL (CDECL *pGetCharABCWidths)(PHYSDEV,UINT,UINT,LPABC);
|
||||
BOOL (CDECL *pGetCharABCWidthsI)(PHYSDEV,UINT,UINT,WORD*,LPABC);
|
||||
|
@ -140,7 +139,6 @@ struct gdi_dc_funcs
|
|||
UINT (CDECL *pRealizePalette)(PHYSDEV,HPALETTE,BOOL);
|
||||
BOOL (CDECL *pRectangle)(PHYSDEV,INT,INT,INT,INT);
|
||||
HDC (CDECL *pResetDC)(PHYSDEV,const DEVMODEW*);
|
||||
BOOL (CDECL *pRestoreDC)(PHYSDEV,INT);
|
||||
BOOL (CDECL *pRoundRect)(PHYSDEV,INT,INT,INT,INT,INT,INT);
|
||||
HBITMAP (CDECL *pSelectBitmap)(PHYSDEV,HBITMAP);
|
||||
HBRUSH (CDECL *pSelectBrush)(PHYSDEV,HBRUSH,const struct brush_pattern*);
|
||||
|
@ -174,7 +172,7 @@ struct gdi_dc_funcs
|
|||
};
|
||||
|
||||
/* increment this when you change the DC function table */
|
||||
#define WINE_GDI_DRIVER_VERSION 60
|
||||
#define WINE_GDI_DRIVER_VERSION 61
|
||||
|
||||
#define GDI_PRIORITY_NULL_DRV 0 /* null driver */
|
||||
#define GDI_PRIORITY_FONT_DRV 100 /* any font driver */
|
||||
|
|
Loading…
Reference in New Issue