Commit 626afcad authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

gdi32: Remove no longer used driver entry points.

parent 43a605cc
...@@ -713,7 +713,6 @@ const struct gdi_dc_funcs dib_driver = ...@@ -713,7 +713,6 @@ const struct gdi_dc_funcs dib_driver =
dibdrv_SelectFont, /* pSelectFont */ dibdrv_SelectFont, /* pSelectFont */
NULL, /* pSelectPalette */ NULL, /* pSelectPalette */
dibdrv_SelectPen, /* pSelectPen */ dibdrv_SelectPen, /* pSelectPen */
NULL, /* pSetArcDirection */
NULL, /* pSetBkColor */ NULL, /* pSetBkColor */
dibdrv_SetBoundsRect, /* pSetBoundsRect */ dibdrv_SetBoundsRect, /* pSetBoundsRect */
dibdrv_SetDCBrushColor, /* pSetDCBrushColor */ dibdrv_SetDCBrushColor, /* pSetDCBrushColor */
...@@ -725,9 +724,6 @@ const struct gdi_dc_funcs dib_driver = ...@@ -725,9 +724,6 @@ const struct gdi_dc_funcs dib_driver =
NULL, /* pSetMapMode */ NULL, /* pSetMapMode */
NULL, /* pSetMapperFlags */ NULL, /* pSetMapperFlags */
dibdrv_SetPixel, /* pSetPixel */ dibdrv_SetPixel, /* pSetPixel */
NULL, /* pSetPolyFillMode */
NULL, /* pSetRelAbs */
NULL, /* pSetStretchBltMode */
NULL, /* pSetTextCharacterExtra */ NULL, /* pSetTextCharacterExtra */
NULL, /* pSetTextColor */ NULL, /* pSetTextColor */
NULL, /* pSetTextJustification */ NULL, /* pSetTextJustification */
...@@ -1309,7 +1305,6 @@ static const struct gdi_dc_funcs window_driver = ...@@ -1309,7 +1305,6 @@ static const struct gdi_dc_funcs window_driver =
NULL, /* pSelectFont */ NULL, /* pSelectFont */
NULL, /* pSelectPalette */ NULL, /* pSelectPalette */
NULL, /* pSelectPen */ NULL, /* pSelectPen */
NULL, /* pSetArcDirection */
NULL, /* pSetBkColor */ NULL, /* pSetBkColor */
windrv_SetBoundsRect, /* pSetBoundsRect */ windrv_SetBoundsRect, /* pSetBoundsRect */
NULL, /* pSetDCBrushColor */ NULL, /* pSetDCBrushColor */
...@@ -1321,9 +1316,6 @@ static const struct gdi_dc_funcs window_driver = ...@@ -1321,9 +1316,6 @@ static const struct gdi_dc_funcs window_driver =
NULL, /* pSetMapMode */ NULL, /* pSetMapMode */
NULL, /* pSetMapperFlags */ NULL, /* pSetMapperFlags */
windrv_SetPixel, /* pSetPixel */ windrv_SetPixel, /* pSetPixel */
NULL, /* pSetPolyFillMode */
NULL, /* pSetRelAbs */
NULL, /* pSetStretchBltMode */
NULL, /* pSetTextCharacterExtra */ NULL, /* pSetTextCharacterExtra */
NULL, /* pSetTextColor */ NULL, /* pSetTextColor */
NULL, /* pSetTextJustification */ NULL, /* pSetTextJustification */
......
...@@ -761,11 +761,6 @@ static HPEN CDECL nulldrv_SelectPen( PHYSDEV dev, HPEN pen, const struct brush_p ...@@ -761,11 +761,6 @@ static HPEN CDECL nulldrv_SelectPen( PHYSDEV dev, HPEN pen, const struct brush_p
return pen; return pen;
} }
static INT CDECL nulldrv_SetArcDirection( PHYSDEV dev, INT dir )
{
return dir;
}
static COLORREF CDECL nulldrv_SetBkColor( PHYSDEV dev, COLORREF color ) static COLORREF CDECL nulldrv_SetBkColor( PHYSDEV dev, COLORREF color )
{ {
return color; return color;
...@@ -822,21 +817,6 @@ static COLORREF CDECL nulldrv_SetPixel( PHYSDEV dev, INT x, INT y, COLORREF colo ...@@ -822,21 +817,6 @@ static COLORREF CDECL nulldrv_SetPixel( PHYSDEV dev, INT x, INT y, COLORREF colo
return color; return color;
} }
static INT CDECL nulldrv_SetPolyFillMode( PHYSDEV dev, INT mode )
{
return mode;
}
static INT CDECL nulldrv_SetRelAbs( PHYSDEV dev, INT mode )
{
return mode;
}
static INT CDECL nulldrv_SetStretchBltMode( PHYSDEV dev, INT mode )
{
return mode;
}
static INT CDECL nulldrv_SetTextCharacterExtra( PHYSDEV dev, INT extra ) static INT CDECL nulldrv_SetTextCharacterExtra( PHYSDEV dev, INT extra )
{ {
return extra; return extra;
...@@ -980,7 +960,6 @@ const struct gdi_dc_funcs null_driver = ...@@ -980,7 +960,6 @@ const struct gdi_dc_funcs null_driver =
nulldrv_SelectFont, /* pSelectFont */ nulldrv_SelectFont, /* pSelectFont */
nulldrv_SelectPalette, /* pSelectPalette */ nulldrv_SelectPalette, /* pSelectPalette */
nulldrv_SelectPen, /* pSelectPen */ nulldrv_SelectPen, /* pSelectPen */
nulldrv_SetArcDirection, /* pSetArcDirection */
nulldrv_SetBkColor, /* pSetBkColor */ nulldrv_SetBkColor, /* pSetBkColor */
nulldrv_SetBoundsRect, /* pSetBoundsRect */ nulldrv_SetBoundsRect, /* pSetBoundsRect */
nulldrv_SetDCBrushColor, /* pSetDCBrushColor */ nulldrv_SetDCBrushColor, /* pSetDCBrushColor */
...@@ -992,9 +971,6 @@ const struct gdi_dc_funcs null_driver = ...@@ -992,9 +971,6 @@ const struct gdi_dc_funcs null_driver =
nulldrv_SetMapMode, /* pSetMapMode */ nulldrv_SetMapMode, /* pSetMapMode */
nulldrv_SetMapperFlags, /* pSetMapperFlags */ nulldrv_SetMapperFlags, /* pSetMapperFlags */
nulldrv_SetPixel, /* pSetPixel */ nulldrv_SetPixel, /* pSetPixel */
nulldrv_SetPolyFillMode, /* pSetPolyFillMode */
nulldrv_SetRelAbs, /* pSetRelAbs */
nulldrv_SetStretchBltMode, /* pSetStretchBltMode */
nulldrv_SetTextCharacterExtra, /* pSetTextCharacterExtra */ nulldrv_SetTextCharacterExtra, /* pSetTextCharacterExtra */
nulldrv_SetTextColor, /* pSetTextColor */ nulldrv_SetTextColor, /* pSetTextColor */
nulldrv_SetTextJustification, /* pSetTextJustification */ nulldrv_SetTextJustification, /* pSetTextJustification */
......
...@@ -127,7 +127,6 @@ static const struct gdi_dc_funcs emfdrv_driver = ...@@ -127,7 +127,6 @@ static const struct gdi_dc_funcs emfdrv_driver =
EMFDRV_SelectFont, /* pSelectFont */ EMFDRV_SelectFont, /* pSelectFont */
EMFDRV_SelectPalette, /* pSelectPalette */ EMFDRV_SelectPalette, /* pSelectPalette */
EMFDRV_SelectPen, /* pSelectPen */ EMFDRV_SelectPen, /* pSelectPen */
NULL, /* pSetArcDirection */
EMFDRV_SetBkColor, /* pSetBkColor */ EMFDRV_SetBkColor, /* pSetBkColor */
NULL, /* pSetBoundsRect */ NULL, /* pSetBoundsRect */
EMFDRV_SetDCBrushColor, /* pSetDCBrushColor*/ EMFDRV_SetDCBrushColor, /* pSetDCBrushColor*/
...@@ -139,9 +138,6 @@ static const struct gdi_dc_funcs emfdrv_driver = ...@@ -139,9 +138,6 @@ static const struct gdi_dc_funcs emfdrv_driver =
EMFDRV_SetMapMode, /* pSetMapMode */ EMFDRV_SetMapMode, /* pSetMapMode */
EMFDRV_SetMapperFlags, /* pSetMapperFlags */ EMFDRV_SetMapperFlags, /* pSetMapperFlags */
EMFDRV_SetPixel, /* pSetPixel */ EMFDRV_SetPixel, /* pSetPixel */
NULL, /* pSetPolyFillMode */
NULL, /* pSetRelAbs */
NULL, /* pSetStretchBltMode */
NULL, /* pSetTextCharacterExtra */ NULL, /* pSetTextCharacterExtra */
EMFDRV_SetTextColor, /* pSetTextColor */ EMFDRV_SetTextColor, /* pSetTextColor */
EMFDRV_SetTextJustification, /* pSetTextJustification */ EMFDRV_SetTextJustification, /* pSetTextJustification */
......
...@@ -3904,7 +3904,6 @@ const struct gdi_dc_funcs font_driver = ...@@ -3904,7 +3904,6 @@ const struct gdi_dc_funcs font_driver =
font_SelectFont, /* pSelectFont */ font_SelectFont, /* pSelectFont */
NULL, /* pSelectPalette */ NULL, /* pSelectPalette */
NULL, /* pSelectPen */ NULL, /* pSelectPen */
NULL, /* pSetArcDirection */
NULL, /* pSetBkColor */ NULL, /* pSetBkColor */
NULL, /* pSetBoundsRect */ NULL, /* pSetBoundsRect */
NULL, /* pSetDCBrushColor */ NULL, /* pSetDCBrushColor */
...@@ -3916,9 +3915,6 @@ const struct gdi_dc_funcs font_driver = ...@@ -3916,9 +3915,6 @@ const struct gdi_dc_funcs font_driver =
NULL, /* pSetMapMode */ NULL, /* pSetMapMode */
NULL, /* pSetMapperFlags */ NULL, /* pSetMapperFlags */
NULL, /* pSetPixel */ NULL, /* pSetPixel */
NULL, /* pSetPolyFillMode */
NULL, /* pSetRelAbs */
NULL, /* pSetStretchBltMode */
NULL, /* pSetTextCharacterExtra */ NULL, /* pSetTextCharacterExtra */
NULL, /* pSetTextColor */ NULL, /* pSetTextColor */
NULL, /* pSetTextJustification */ NULL, /* pSetTextJustification */
......
...@@ -190,7 +190,6 @@ static const struct gdi_dc_funcs MFDRV_Funcs = ...@@ -190,7 +190,6 @@ static const struct gdi_dc_funcs MFDRV_Funcs =
MFDRV_SelectFont, /* pSelectFont */ MFDRV_SelectFont, /* pSelectFont */
MFDRV_SelectPalette, /* pSelectPalette */ MFDRV_SelectPalette, /* pSelectPalette */
MFDRV_SelectPen, /* pSelectPen */ MFDRV_SelectPen, /* pSelectPen */
NULL, /* pSetArcDirection */
MFDRV_SetBkColor, /* pSetBkColor */ MFDRV_SetBkColor, /* pSetBkColor */
MFDRV_SetBoundsRect, /* pSetBoundsRect */ MFDRV_SetBoundsRect, /* pSetBoundsRect */
MFDRV_SetDCBrushColor, /* pSetDCBrushColor*/ MFDRV_SetDCBrushColor, /* pSetDCBrushColor*/
...@@ -202,9 +201,6 @@ static const struct gdi_dc_funcs MFDRV_Funcs = ...@@ -202,9 +201,6 @@ static const struct gdi_dc_funcs MFDRV_Funcs =
MFDRV_SetMapMode, /* pSetMapMode */ MFDRV_SetMapMode, /* pSetMapMode */
MFDRV_SetMapperFlags, /* pSetMapperFlags */ MFDRV_SetMapperFlags, /* pSetMapperFlags */
NULL, /* pSetPixel */ NULL, /* pSetPixel */
NULL, /* pSetPolyFillMode */
NULL, /* pSetRelAbs */
NULL, /* pSetStretchBltMode */
MFDRV_SetTextCharacterExtra, /* pSetTextCharacterExtra */ MFDRV_SetTextCharacterExtra, /* pSetTextCharacterExtra */
MFDRV_SetTextColor, /* pSetTextColor */ MFDRV_SetTextColor, /* pSetTextColor */
MFDRV_SetTextJustification, /* pSetTextJustification */ MFDRV_SetTextJustification, /* pSetTextJustification */
......
...@@ -2165,7 +2165,6 @@ const struct gdi_dc_funcs path_driver = ...@@ -2165,7 +2165,6 @@ const struct gdi_dc_funcs path_driver =
NULL, /* pSelectFont */ NULL, /* pSelectFont */
NULL, /* pSelectPalette */ NULL, /* pSelectPalette */
NULL, /* pSelectPen */ NULL, /* pSelectPen */
NULL, /* pSetArcDirection */
NULL, /* pSetBkColor */ NULL, /* pSetBkColor */
NULL, /* pSetBoundsRect */ NULL, /* pSetBoundsRect */
NULL, /* pSetDCBrushColor */ NULL, /* pSetDCBrushColor */
...@@ -2177,9 +2176,6 @@ const struct gdi_dc_funcs path_driver = ...@@ -2177,9 +2176,6 @@ const struct gdi_dc_funcs path_driver =
NULL, /* pSetMapMode */ NULL, /* pSetMapMode */
NULL, /* pSetMapperFlags */ NULL, /* pSetMapperFlags */
NULL, /* pSetPixel */ NULL, /* pSetPixel */
NULL, /* pSetPolyFillMode */
NULL, /* pSetRelAbs */
NULL, /* pSetStretchBltMode */
NULL, /* pSetTextCharacterExtra */ NULL, /* pSetTextCharacterExtra */
NULL, /* pSetTextColor */ NULL, /* pSetTextColor */
NULL, /* pSetTextJustification */ NULL, /* pSetTextJustification */
......
...@@ -374,7 +374,6 @@ static const struct gdi_dc_funcs android_drv_funcs = ...@@ -374,7 +374,6 @@ static const struct gdi_dc_funcs android_drv_funcs =
NULL, /* pSelectFont */ NULL, /* pSelectFont */
NULL, /* pSelectPalette */ NULL, /* pSelectPalette */
NULL, /* pSelectPen */ NULL, /* pSelectPen */
NULL, /* pSetArcDirection */
NULL, /* pSetBkColor */ NULL, /* pSetBkColor */
NULL, /* pSetBoundsRect */ NULL, /* pSetBoundsRect */
NULL, /* pSetDCBrushColor */ NULL, /* pSetDCBrushColor */
...@@ -386,9 +385,6 @@ static const struct gdi_dc_funcs android_drv_funcs = ...@@ -386,9 +385,6 @@ static const struct gdi_dc_funcs android_drv_funcs =
NULL, /* pSetMapMode */ NULL, /* pSetMapMode */
NULL, /* pSetMapperFlags */ NULL, /* pSetMapperFlags */
NULL, /* pSetPixel */ NULL, /* pSetPixel */
NULL, /* pSetPolyFillMode */
NULL, /* pSetRelAbs */
NULL, /* pSetStretchBltMode */
NULL, /* pSetTextCharacterExtra */ NULL, /* pSetTextCharacterExtra */
NULL, /* pSetTextColor */ NULL, /* pSetTextColor */
NULL, /* pSetTextJustification */ NULL, /* pSetTextJustification */
......
...@@ -354,7 +354,6 @@ static const struct gdi_dc_funcs macdrv_funcs = ...@@ -354,7 +354,6 @@ static const struct gdi_dc_funcs macdrv_funcs =
NULL, /* pSelectFont */ NULL, /* pSelectFont */
NULL, /* pSelectPalette */ NULL, /* pSelectPalette */
NULL, /* pSelectPen */ NULL, /* pSelectPen */
NULL, /* pSetArcDirection */
NULL, /* pSetBkColor */ NULL, /* pSetBkColor */
NULL, /* pSetBoundsRect */ NULL, /* pSetBoundsRect */
NULL, /* pSetDCBrushColor */ NULL, /* pSetDCBrushColor */
...@@ -366,9 +365,6 @@ static const struct gdi_dc_funcs macdrv_funcs = ...@@ -366,9 +365,6 @@ static const struct gdi_dc_funcs macdrv_funcs =
NULL, /* pSetMapMode */ NULL, /* pSetMapMode */
NULL, /* pSetMapperFlags */ NULL, /* pSetMapperFlags */
NULL, /* pSetPixel */ NULL, /* pSetPixel */
NULL, /* pSetPolyFillMode */
NULL, /* pSetRelAbs */
NULL, /* pSetStretchBltMode */
NULL, /* pSetTextCharacterExtra */ NULL, /* pSetTextCharacterExtra */
NULL, /* pSetTextColor */ NULL, /* pSetTextColor */
NULL, /* pSetTextJustification */ NULL, /* pSetTextJustification */
......
...@@ -868,7 +868,6 @@ static const struct gdi_dc_funcs psdrv_funcs = ...@@ -868,7 +868,6 @@ static const struct gdi_dc_funcs psdrv_funcs =
PSDRV_SelectFont, /* pSelectFont */ PSDRV_SelectFont, /* pSelectFont */
NULL, /* pSelectPalette */ NULL, /* pSelectPalette */
PSDRV_SelectPen, /* pSelectPen */ PSDRV_SelectPen, /* pSelectPen */
NULL, /* pSetArcDirection */
PSDRV_SetBkColor, /* pSetBkColor */ PSDRV_SetBkColor, /* pSetBkColor */
NULL, /* pSetBoundsRect */ NULL, /* pSetBoundsRect */
PSDRV_SetDCBrushColor, /* pSetDCBrushColor */ PSDRV_SetDCBrushColor, /* pSetDCBrushColor */
...@@ -880,9 +879,6 @@ static const struct gdi_dc_funcs psdrv_funcs = ...@@ -880,9 +879,6 @@ static const struct gdi_dc_funcs psdrv_funcs =
NULL, /* pSetMapMode */ NULL, /* pSetMapMode */
NULL, /* pSetMapperFlags */ NULL, /* pSetMapperFlags */
PSDRV_SetPixel, /* pSetPixel */ PSDRV_SetPixel, /* pSetPixel */
NULL, /* pSetPolyFillMode */
NULL, /* pSetRelAbs */
NULL, /* pSetStretchBltMode */
NULL, /* pSetTextCharacterExtra */ NULL, /* pSetTextCharacterExtra */
PSDRV_SetTextColor, /* pSetTextColor */ PSDRV_SetTextColor, /* pSetTextColor */
NULL, /* pSetTextJustification */ NULL, /* pSetTextJustification */
......
...@@ -433,7 +433,6 @@ static const struct gdi_dc_funcs x11drv_funcs = ...@@ -433,7 +433,6 @@ static const struct gdi_dc_funcs x11drv_funcs =
X11DRV_SelectFont, /* pSelectFont */ X11DRV_SelectFont, /* pSelectFont */
NULL, /* pSelectPalette */ NULL, /* pSelectPalette */
X11DRV_SelectPen, /* pSelectPen */ X11DRV_SelectPen, /* pSelectPen */
NULL, /* pSetArcDirection */
NULL, /* pSetBkColor */ NULL, /* pSetBkColor */
X11DRV_SetBoundsRect, /* pSetBoundsRect */ X11DRV_SetBoundsRect, /* pSetBoundsRect */
X11DRV_SetDCBrushColor, /* pSetDCBrushColor */ X11DRV_SetDCBrushColor, /* pSetDCBrushColor */
...@@ -445,9 +444,6 @@ static const struct gdi_dc_funcs x11drv_funcs = ...@@ -445,9 +444,6 @@ static const struct gdi_dc_funcs x11drv_funcs =
NULL, /* pSetMapMode */ NULL, /* pSetMapMode */
NULL, /* pSetMapperFlags */ NULL, /* pSetMapperFlags */
X11DRV_SetPixel, /* pSetPixel */ X11DRV_SetPixel, /* pSetPixel */
NULL, /* pSetPolyFillMode */
NULL, /* pSetRelAbs */
NULL, /* pSetStretchBltMode */
NULL, /* pSetTextCharacterExtra */ NULL, /* pSetTextCharacterExtra */
NULL, /* pSetTextColor */ NULL, /* pSetTextColor */
NULL, /* pSetTextJustification */ NULL, /* pSetTextJustification */
......
...@@ -2245,7 +2245,6 @@ static const struct gdi_dc_funcs xrender_funcs = ...@@ -2245,7 +2245,6 @@ static const struct gdi_dc_funcs xrender_funcs =
xrenderdrv_SelectFont, /* pSelectFont */ xrenderdrv_SelectFont, /* pSelectFont */
NULL, /* pSelectPalette */ NULL, /* pSelectPalette */
NULL, /* pSelectPen */ NULL, /* pSelectPen */
NULL, /* pSetArcDirection */
NULL, /* pSetBkColor */ NULL, /* pSetBkColor */
NULL, /* pSetBoundsRect */ NULL, /* pSetBoundsRect */
NULL, /* pSetDCBrushColor */ NULL, /* pSetDCBrushColor */
...@@ -2257,9 +2256,6 @@ static const struct gdi_dc_funcs xrender_funcs = ...@@ -2257,9 +2256,6 @@ static const struct gdi_dc_funcs xrender_funcs =
NULL, /* pSetMapMode */ NULL, /* pSetMapMode */
NULL, /* pSetMapperFlags */ NULL, /* pSetMapperFlags */
NULL, /* pSetPixel */ NULL, /* pSetPixel */
NULL, /* pSetPolyFillMode */
NULL, /* pSetRelAbs */
NULL, /* pSetStretchBltMode */
NULL, /* pSetTextCharacterExtra */ NULL, /* pSetTextCharacterExtra */
NULL, /* pSetTextColor */ NULL, /* pSetTextColor */
NULL, /* pSetTextJustification */ NULL, /* pSetTextJustification */
......
...@@ -158,7 +158,6 @@ struct gdi_dc_funcs ...@@ -158,7 +158,6 @@ struct gdi_dc_funcs
HFONT (CDECL *pSelectFont)(PHYSDEV,HFONT,UINT*); HFONT (CDECL *pSelectFont)(PHYSDEV,HFONT,UINT*);
HPALETTE (CDECL *pSelectPalette)(PHYSDEV,HPALETTE,BOOL); HPALETTE (CDECL *pSelectPalette)(PHYSDEV,HPALETTE,BOOL);
HPEN (CDECL *pSelectPen)(PHYSDEV,HPEN,const struct brush_pattern*); HPEN (CDECL *pSelectPen)(PHYSDEV,HPEN,const struct brush_pattern*);
INT (CDECL *pSetArcDirection)(PHYSDEV,INT);
COLORREF (CDECL *pSetBkColor)(PHYSDEV,COLORREF); COLORREF (CDECL *pSetBkColor)(PHYSDEV,COLORREF);
UINT (CDECL *pSetBoundsRect)(PHYSDEV,RECT*,UINT); UINT (CDECL *pSetBoundsRect)(PHYSDEV,RECT*,UINT);
COLORREF (CDECL *pSetDCBrushColor)(PHYSDEV, COLORREF); COLORREF (CDECL *pSetDCBrushColor)(PHYSDEV, COLORREF);
...@@ -170,9 +169,6 @@ struct gdi_dc_funcs ...@@ -170,9 +169,6 @@ struct gdi_dc_funcs
INT (CDECL *pSetMapMode)(PHYSDEV,INT); INT (CDECL *pSetMapMode)(PHYSDEV,INT);
DWORD (CDECL *pSetMapperFlags)(PHYSDEV,DWORD); DWORD (CDECL *pSetMapperFlags)(PHYSDEV,DWORD);
COLORREF (CDECL *pSetPixel)(PHYSDEV,INT,INT,COLORREF); COLORREF (CDECL *pSetPixel)(PHYSDEV,INT,INT,COLORREF);
INT (CDECL *pSetPolyFillMode)(PHYSDEV,INT);
INT (CDECL *pSetRelAbs)(PHYSDEV,INT);
INT (CDECL *pSetStretchBltMode)(PHYSDEV,INT);
INT (CDECL *pSetTextCharacterExtra)(PHYSDEV,INT); INT (CDECL *pSetTextCharacterExtra)(PHYSDEV,INT);
COLORREF (CDECL *pSetTextColor)(PHYSDEV,COLORREF); COLORREF (CDECL *pSetTextColor)(PHYSDEV,COLORREF);
BOOL (CDECL *pSetTextJustification)(PHYSDEV,INT,INT); BOOL (CDECL *pSetTextJustification)(PHYSDEV,INT,INT);
...@@ -199,7 +195,7 @@ struct gdi_dc_funcs ...@@ -199,7 +195,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 53 #define WINE_GDI_DRIVER_VERSION 54
#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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment