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
|
* reset_dc_state
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -652,7 +652,6 @@ const struct gdi_dc_funcs dib_driver =
|
||||||
NULL, /* pFlattenPath */
|
NULL, /* pFlattenPath */
|
||||||
NULL, /* pFontIsLinked */
|
NULL, /* pFontIsLinked */
|
||||||
NULL, /* pFrameRgn */
|
NULL, /* pFrameRgn */
|
||||||
NULL, /* pGdiComment */
|
|
||||||
NULL, /* pGetBoundsRect */
|
NULL, /* pGetBoundsRect */
|
||||||
NULL, /* pGetCharABCWidths */
|
NULL, /* pGetCharABCWidths */
|
||||||
NULL, /* pGetCharABCWidthsI */
|
NULL, /* pGetCharABCWidthsI */
|
||||||
|
@ -695,7 +694,6 @@ const struct gdi_dc_funcs dib_driver =
|
||||||
NULL, /* pRealizePalette */
|
NULL, /* pRealizePalette */
|
||||||
dibdrv_Rectangle, /* pRectangle */
|
dibdrv_Rectangle, /* pRectangle */
|
||||||
NULL, /* pResetDC */
|
NULL, /* pResetDC */
|
||||||
NULL, /* pRestoreDC */
|
|
||||||
dibdrv_RoundRect, /* pRoundRect */
|
dibdrv_RoundRect, /* pRoundRect */
|
||||||
dibdrv_SelectBitmap, /* pSelectBitmap */
|
dibdrv_SelectBitmap, /* pSelectBitmap */
|
||||||
dibdrv_SelectBrush, /* pSelectBrush */
|
dibdrv_SelectBrush, /* pSelectBrush */
|
||||||
|
@ -1223,7 +1221,6 @@ static const struct gdi_dc_funcs window_driver =
|
||||||
NULL, /* pFlattenPath */
|
NULL, /* pFlattenPath */
|
||||||
NULL, /* pFontIsLinked */
|
NULL, /* pFontIsLinked */
|
||||||
NULL, /* pFrameRgn */
|
NULL, /* pFrameRgn */
|
||||||
NULL, /* pGdiComment */
|
|
||||||
NULL, /* pGetBoundsRect */
|
NULL, /* pGetBoundsRect */
|
||||||
NULL, /* pGetCharABCWidths */
|
NULL, /* pGetCharABCWidths */
|
||||||
NULL, /* pGetCharABCWidthsI */
|
NULL, /* pGetCharABCWidthsI */
|
||||||
|
@ -1266,7 +1263,6 @@ static const struct gdi_dc_funcs window_driver =
|
||||||
NULL, /* pRealizePalette */
|
NULL, /* pRealizePalette */
|
||||||
windrv_Rectangle, /* pRectangle */
|
windrv_Rectangle, /* pRectangle */
|
||||||
NULL, /* pResetDC */
|
NULL, /* pResetDC */
|
||||||
NULL, /* pRestoreDC */
|
|
||||||
windrv_RoundRect, /* pRoundRect */
|
windrv_RoundRect, /* pRoundRect */
|
||||||
NULL, /* pSelectBitmap */
|
NULL, /* pSelectBitmap */
|
||||||
NULL, /* pSelectBrush */
|
NULL, /* pSelectBrush */
|
||||||
|
|
|
@ -386,11 +386,6 @@ static BOOL CDECL nulldrv_FontIsLinked( PHYSDEV dev )
|
||||||
return FALSE;
|
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 )
|
static UINT CDECL nulldrv_GetBoundsRect( PHYSDEV dev, RECT *rect, UINT flags )
|
||||||
{
|
{
|
||||||
return DCB_RESET;
|
return DCB_RESET;
|
||||||
|
@ -863,7 +858,6 @@ const struct gdi_dc_funcs null_driver =
|
||||||
nulldrv_FlattenPath, /* pFlattenPath */
|
nulldrv_FlattenPath, /* pFlattenPath */
|
||||||
nulldrv_FontIsLinked, /* pFontIsLinked */
|
nulldrv_FontIsLinked, /* pFontIsLinked */
|
||||||
nulldrv_FrameRgn, /* pFrameRgn */
|
nulldrv_FrameRgn, /* pFrameRgn */
|
||||||
nulldrv_GdiComment, /* pGdiComment */
|
|
||||||
nulldrv_GetBoundsRect, /* pGetBoundsRect */
|
nulldrv_GetBoundsRect, /* pGetBoundsRect */
|
||||||
nulldrv_GetCharABCWidths, /* pGetCharABCWidths */
|
nulldrv_GetCharABCWidths, /* pGetCharABCWidths */
|
||||||
nulldrv_GetCharABCWidthsI, /* pGetCharABCWidthsI */
|
nulldrv_GetCharABCWidthsI, /* pGetCharABCWidthsI */
|
||||||
|
@ -906,7 +900,6 @@ const struct gdi_dc_funcs null_driver =
|
||||||
nulldrv_RealizePalette, /* pRealizePalette */
|
nulldrv_RealizePalette, /* pRealizePalette */
|
||||||
nulldrv_Rectangle, /* pRectangle */
|
nulldrv_Rectangle, /* pRectangle */
|
||||||
nulldrv_ResetDC, /* pResetDC */
|
nulldrv_ResetDC, /* pResetDC */
|
||||||
nulldrv_RestoreDC, /* pRestoreDC */
|
|
||||||
nulldrv_RoundRect, /* pRoundRect */
|
nulldrv_RoundRect, /* pRoundRect */
|
||||||
nulldrv_SelectBitmap, /* pSelectBitmap */
|
nulldrv_SelectBitmap, /* pSelectBitmap */
|
||||||
nulldrv_SelectBrush, /* pSelectBrush */
|
nulldrv_SelectBrush, /* pSelectBrush */
|
||||||
|
|
|
@ -66,7 +66,6 @@ static const struct gdi_dc_funcs emfdrv_driver =
|
||||||
EMFDRV_FlattenPath, /* pFlattenPath */
|
EMFDRV_FlattenPath, /* pFlattenPath */
|
||||||
NULL, /* pFontIsLinked */
|
NULL, /* pFontIsLinked */
|
||||||
EMFDRV_FrameRgn, /* pFrameRgn */
|
EMFDRV_FrameRgn, /* pFrameRgn */
|
||||||
NULL, /* pGdiComment */
|
|
||||||
NULL, /* pGetBoundsRect */
|
NULL, /* pGetBoundsRect */
|
||||||
NULL, /* pGetCharABCWidths */
|
NULL, /* pGetCharABCWidths */
|
||||||
NULL, /* pGetCharABCWidthsI */
|
NULL, /* pGetCharABCWidthsI */
|
||||||
|
@ -109,7 +108,6 @@ static const struct gdi_dc_funcs emfdrv_driver =
|
||||||
NULL, /* pRealizePalette */
|
NULL, /* pRealizePalette */
|
||||||
EMFDRV_Rectangle, /* pRectangle */
|
EMFDRV_Rectangle, /* pRectangle */
|
||||||
NULL, /* pResetDC */
|
NULL, /* pResetDC */
|
||||||
NULL, /* pRestoreDC */
|
|
||||||
EMFDRV_RoundRect, /* pRoundRect */
|
EMFDRV_RoundRect, /* pRoundRect */
|
||||||
EMFDRV_SelectBitmap, /* pSelectBitmap */
|
EMFDRV_SelectBitmap, /* pSelectBitmap */
|
||||||
NULL, /* pSelectBrush */
|
NULL, /* pSelectBrush */
|
||||||
|
|
|
@ -3843,7 +3843,6 @@ const struct gdi_dc_funcs font_driver =
|
||||||
NULL, /* pFlattenPath */
|
NULL, /* pFlattenPath */
|
||||||
font_FontIsLinked, /* pFontIsLinked */
|
font_FontIsLinked, /* pFontIsLinked */
|
||||||
NULL, /* pFrameRgn */
|
NULL, /* pFrameRgn */
|
||||||
NULL, /* pGdiComment */
|
|
||||||
NULL, /* pGetBoundsRect */
|
NULL, /* pGetBoundsRect */
|
||||||
font_GetCharABCWidths, /* pGetCharABCWidths */
|
font_GetCharABCWidths, /* pGetCharABCWidths */
|
||||||
font_GetCharABCWidthsI, /* pGetCharABCWidthsI */
|
font_GetCharABCWidthsI, /* pGetCharABCWidthsI */
|
||||||
|
@ -3886,7 +3885,6 @@ const struct gdi_dc_funcs font_driver =
|
||||||
NULL, /* pRealizePalette */
|
NULL, /* pRealizePalette */
|
||||||
NULL, /* pRectangle */
|
NULL, /* pRectangle */
|
||||||
NULL, /* pResetDC */
|
NULL, /* pResetDC */
|
||||||
NULL, /* pRestoreDC */
|
|
||||||
NULL, /* pRoundRect */
|
NULL, /* pRoundRect */
|
||||||
NULL, /* pSelectBitmap */
|
NULL, /* pSelectBitmap */
|
||||||
NULL, /* pSelectBrush */
|
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_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_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_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 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,
|
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,
|
INT x_src, INT y_src, UINT start, UINT lines,
|
||||||
|
|
|
@ -2104,7 +2104,6 @@ const struct gdi_dc_funcs path_driver =
|
||||||
NULL, /* pFlattenPath */
|
NULL, /* pFlattenPath */
|
||||||
NULL, /* pFontIsLinked */
|
NULL, /* pFontIsLinked */
|
||||||
NULL, /* pFrameRgn */
|
NULL, /* pFrameRgn */
|
||||||
NULL, /* pGdiComment */
|
|
||||||
NULL, /* pGetBoundsRect */
|
NULL, /* pGetBoundsRect */
|
||||||
NULL, /* pGetCharABCWidths */
|
NULL, /* pGetCharABCWidths */
|
||||||
NULL, /* pGetCharABCWidthsI */
|
NULL, /* pGetCharABCWidthsI */
|
||||||
|
@ -2147,7 +2146,6 @@ const struct gdi_dc_funcs path_driver =
|
||||||
NULL, /* pRealizePalette */
|
NULL, /* pRealizePalette */
|
||||||
pathdrv_Rectangle, /* pRectangle */
|
pathdrv_Rectangle, /* pRectangle */
|
||||||
NULL, /* pResetDC */
|
NULL, /* pResetDC */
|
||||||
NULL, /* pRestoreDC */
|
|
||||||
pathdrv_RoundRect, /* pRoundRect */
|
pathdrv_RoundRect, /* pRoundRect */
|
||||||
NULL, /* pSelectBitmap */
|
NULL, /* pSelectBitmap */
|
||||||
NULL, /* pSelectBrush */
|
NULL, /* pSelectBrush */
|
||||||
|
|
|
@ -313,7 +313,6 @@ static const struct gdi_dc_funcs android_drv_funcs =
|
||||||
NULL, /* pFlattenPath */
|
NULL, /* pFlattenPath */
|
||||||
NULL, /* pFontIsLinked */
|
NULL, /* pFontIsLinked */
|
||||||
NULL, /* pFrameRgn */
|
NULL, /* pFrameRgn */
|
||||||
NULL, /* pGdiComment */
|
|
||||||
NULL, /* pGetBoundsRect */
|
NULL, /* pGetBoundsRect */
|
||||||
NULL, /* pGetCharABCWidths */
|
NULL, /* pGetCharABCWidths */
|
||||||
NULL, /* pGetCharABCWidthsI */
|
NULL, /* pGetCharABCWidthsI */
|
||||||
|
@ -356,7 +355,6 @@ static const struct gdi_dc_funcs android_drv_funcs =
|
||||||
NULL, /* pRealizePalette */
|
NULL, /* pRealizePalette */
|
||||||
NULL, /* pRectangle */
|
NULL, /* pRectangle */
|
||||||
NULL, /* pResetDC */
|
NULL, /* pResetDC */
|
||||||
NULL, /* pRestoreDC */
|
|
||||||
NULL, /* pRoundRect */
|
NULL, /* pRoundRect */
|
||||||
NULL, /* pSelectBitmap */
|
NULL, /* pSelectBitmap */
|
||||||
NULL, /* pSelectBrush */
|
NULL, /* pSelectBrush */
|
||||||
|
|
|
@ -293,7 +293,6 @@ static const struct gdi_dc_funcs macdrv_funcs =
|
||||||
NULL, /* pFlattenPath */
|
NULL, /* pFlattenPath */
|
||||||
NULL, /* pFontIsLinked */
|
NULL, /* pFontIsLinked */
|
||||||
NULL, /* pFrameRgn */
|
NULL, /* pFrameRgn */
|
||||||
NULL, /* pGdiComment */
|
|
||||||
NULL, /* pGetBoundsRect */
|
NULL, /* pGetBoundsRect */
|
||||||
NULL, /* pGetCharABCWidths */
|
NULL, /* pGetCharABCWidths */
|
||||||
NULL, /* pGetCharABCWidthsI */
|
NULL, /* pGetCharABCWidthsI */
|
||||||
|
@ -336,7 +335,6 @@ static const struct gdi_dc_funcs macdrv_funcs =
|
||||||
NULL, /* pRealizePalette */
|
NULL, /* pRealizePalette */
|
||||||
NULL, /* pRectangle */
|
NULL, /* pRectangle */
|
||||||
NULL, /* pResetDC */
|
NULL, /* pResetDC */
|
||||||
NULL, /* pRestoreDC */
|
|
||||||
NULL, /* pRoundRect */
|
NULL, /* pRoundRect */
|
||||||
NULL, /* pSelectBitmap */
|
NULL, /* pSelectBitmap */
|
||||||
NULL, /* pSelectBrush */
|
NULL, /* pSelectBrush */
|
||||||
|
|
|
@ -807,7 +807,6 @@ static const struct gdi_dc_funcs psdrv_funcs =
|
||||||
NULL, /* pFlattenPath */
|
NULL, /* pFlattenPath */
|
||||||
NULL, /* pFontIsLinked */
|
NULL, /* pFontIsLinked */
|
||||||
NULL, /* pFrameRgn */
|
NULL, /* pFrameRgn */
|
||||||
NULL, /* pGdiComment */
|
|
||||||
NULL, /* pGetBoundsRect */
|
NULL, /* pGetBoundsRect */
|
||||||
NULL, /* pGetCharABCWidths */
|
NULL, /* pGetCharABCWidths */
|
||||||
NULL, /* pGetCharABCWidthsI */
|
NULL, /* pGetCharABCWidthsI */
|
||||||
|
@ -850,7 +849,6 @@ static const struct gdi_dc_funcs psdrv_funcs =
|
||||||
NULL, /* pRealizePalette */
|
NULL, /* pRealizePalette */
|
||||||
PSDRV_Rectangle, /* pRectangle */
|
PSDRV_Rectangle, /* pRectangle */
|
||||||
PSDRV_ResetDC, /* pResetDC */
|
PSDRV_ResetDC, /* pResetDC */
|
||||||
NULL, /* pRestoreDC */
|
|
||||||
PSDRV_RoundRect, /* pRoundRect */
|
PSDRV_RoundRect, /* pRoundRect */
|
||||||
NULL, /* pSelectBitmap */
|
NULL, /* pSelectBitmap */
|
||||||
PSDRV_SelectBrush, /* pSelectBrush */
|
PSDRV_SelectBrush, /* pSelectBrush */
|
||||||
|
|
|
@ -372,7 +372,6 @@ static const struct gdi_dc_funcs x11drv_funcs =
|
||||||
NULL, /* pFlattenPath */
|
NULL, /* pFlattenPath */
|
||||||
NULL, /* pFontIsLinked */
|
NULL, /* pFontIsLinked */
|
||||||
NULL, /* pFrameRgn */
|
NULL, /* pFrameRgn */
|
||||||
NULL, /* pGdiComment */
|
|
||||||
NULL, /* pGetBoundsRect */
|
NULL, /* pGetBoundsRect */
|
||||||
NULL, /* pGetCharABCWidths */
|
NULL, /* pGetCharABCWidths */
|
||||||
NULL, /* pGetCharABCWidthsI */
|
NULL, /* pGetCharABCWidthsI */
|
||||||
|
@ -415,7 +414,6 @@ static const struct gdi_dc_funcs x11drv_funcs =
|
||||||
X11DRV_RealizePalette, /* pRealizePalette */
|
X11DRV_RealizePalette, /* pRealizePalette */
|
||||||
X11DRV_Rectangle, /* pRectangle */
|
X11DRV_Rectangle, /* pRectangle */
|
||||||
NULL, /* pResetDC */
|
NULL, /* pResetDC */
|
||||||
NULL, /* pRestoreDC */
|
|
||||||
X11DRV_RoundRect, /* pRoundRect */
|
X11DRV_RoundRect, /* pRoundRect */
|
||||||
NULL, /* pSelectBitmap */
|
NULL, /* pSelectBitmap */
|
||||||
X11DRV_SelectBrush, /* pSelectBrush */
|
X11DRV_SelectBrush, /* pSelectBrush */
|
||||||
|
|
|
@ -2184,7 +2184,6 @@ static const struct gdi_dc_funcs xrender_funcs =
|
||||||
NULL, /* pFlattenPath */
|
NULL, /* pFlattenPath */
|
||||||
NULL, /* pFontIsLinked */
|
NULL, /* pFontIsLinked */
|
||||||
NULL, /* pFrameRgn */
|
NULL, /* pFrameRgn */
|
||||||
NULL, /* pGdiComment */
|
|
||||||
NULL, /* pGetBoundsRect */
|
NULL, /* pGetBoundsRect */
|
||||||
NULL, /* pGetCharABCWidths */
|
NULL, /* pGetCharABCWidths */
|
||||||
NULL, /* pGetCharABCWidthsI */
|
NULL, /* pGetCharABCWidthsI */
|
||||||
|
@ -2227,7 +2226,6 @@ static const struct gdi_dc_funcs xrender_funcs =
|
||||||
NULL, /* pRealizePalette */
|
NULL, /* pRealizePalette */
|
||||||
NULL, /* pRectangle */
|
NULL, /* pRectangle */
|
||||||
NULL, /* pResetDC */
|
NULL, /* pResetDC */
|
||||||
NULL, /* pRestoreDC */
|
|
||||||
NULL, /* pRoundRect */
|
NULL, /* pRoundRect */
|
||||||
NULL, /* pSelectBitmap */
|
NULL, /* pSelectBitmap */
|
||||||
xrenderdrv_SelectBrush, /* pSelectBrush */
|
xrenderdrv_SelectBrush, /* pSelectBrush */
|
||||||
|
|
|
@ -97,7 +97,6 @@ struct gdi_dc_funcs
|
||||||
BOOL (CDECL *pFlattenPath)(PHYSDEV);
|
BOOL (CDECL *pFlattenPath)(PHYSDEV);
|
||||||
BOOL (CDECL *pFontIsLinked)(PHYSDEV);
|
BOOL (CDECL *pFontIsLinked)(PHYSDEV);
|
||||||
BOOL (CDECL *pFrameRgn)(PHYSDEV,HRGN,HBRUSH,INT,INT);
|
BOOL (CDECL *pFrameRgn)(PHYSDEV,HRGN,HBRUSH,INT,INT);
|
||||||
BOOL (CDECL *pGdiComment)(PHYSDEV,UINT,const BYTE*);
|
|
||||||
UINT (CDECL *pGetBoundsRect)(PHYSDEV,RECT*,UINT);
|
UINT (CDECL *pGetBoundsRect)(PHYSDEV,RECT*,UINT);
|
||||||
BOOL (CDECL *pGetCharABCWidths)(PHYSDEV,UINT,UINT,LPABC);
|
BOOL (CDECL *pGetCharABCWidths)(PHYSDEV,UINT,UINT,LPABC);
|
||||||
BOOL (CDECL *pGetCharABCWidthsI)(PHYSDEV,UINT,UINT,WORD*,LPABC);
|
BOOL (CDECL *pGetCharABCWidthsI)(PHYSDEV,UINT,UINT,WORD*,LPABC);
|
||||||
|
@ -140,7 +139,6 @@ struct gdi_dc_funcs
|
||||||
UINT (CDECL *pRealizePalette)(PHYSDEV,HPALETTE,BOOL);
|
UINT (CDECL *pRealizePalette)(PHYSDEV,HPALETTE,BOOL);
|
||||||
BOOL (CDECL *pRectangle)(PHYSDEV,INT,INT,INT,INT);
|
BOOL (CDECL *pRectangle)(PHYSDEV,INT,INT,INT,INT);
|
||||||
HDC (CDECL *pResetDC)(PHYSDEV,const DEVMODEW*);
|
HDC (CDECL *pResetDC)(PHYSDEV,const DEVMODEW*);
|
||||||
BOOL (CDECL *pRestoreDC)(PHYSDEV,INT);
|
|
||||||
BOOL (CDECL *pRoundRect)(PHYSDEV,INT,INT,INT,INT,INT,INT);
|
BOOL (CDECL *pRoundRect)(PHYSDEV,INT,INT,INT,INT,INT,INT);
|
||||||
HBITMAP (CDECL *pSelectBitmap)(PHYSDEV,HBITMAP);
|
HBITMAP (CDECL *pSelectBitmap)(PHYSDEV,HBITMAP);
|
||||||
HBRUSH (CDECL *pSelectBrush)(PHYSDEV,HBRUSH,const struct brush_pattern*);
|
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 */
|
/* 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_NULL_DRV 0 /* null driver */
|
||||||
#define GDI_PRIORITY_FONT_DRV 100 /* any font driver */
|
#define GDI_PRIORITY_FONT_DRV 100 /* any font driver */
|
||||||
|
|
Loading…
Reference in New Issue