From 48cd631413bb9a647f5237590653ba81fe4daf27 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Wed, 4 Aug 2021 11:22:53 +0200 Subject: [PATCH] gdi32: Remove no longer used clipping driver entry points. Signed-off-by: Jacek Caban Signed-off-by: Huw Davies Signed-off-by: Alexandre Julliard --- dlls/gdi32/clipping.c | 24 ------------------------ dlls/gdi32/dibdrv/dc.c | 8 -------- dlls/gdi32/driver.c | 4 ---- dlls/gdi32/enhmfdrv/init.c | 4 ---- dlls/gdi32/font.c | 4 ---- dlls/gdi32/mfdrv/init.c | 4 ---- dlls/gdi32/ntgdi_private.h | 4 ---- dlls/gdi32/path.c | 4 ---- dlls/wineandroid.drv/init.c | 4 ---- dlls/winemac.drv/gdi.c | 4 ---- dlls/wineps.drv/init.c | 4 ---- dlls/winex11.drv/init.c | 4 ---- dlls/winex11.drv/xrender.c | 4 ---- include/wine/gdi_driver.h | 6 +----- 14 files changed, 1 insertion(+), 81 deletions(-) diff --git a/dlls/gdi32/clipping.c b/dlls/gdi32/clipping.c index 92efa6a8926..3215d5e9a14 100644 --- a/dlls/gdi32/clipping.c +++ b/dlls/gdi32/clipping.c @@ -137,15 +137,6 @@ static inline void create_default_clip_region( DC * dc ) } -/*********************************************************************** - * null driver fallback implementations - */ - -INT CDECL nulldrv_ExtSelectClipRgn( PHYSDEV dev, HRGN rgn, INT mode ) -{ - return ERROR; -} - /****************************************************************************** * NtGdiExtSelectClipRgn (win32u.@) */ @@ -205,21 +196,6 @@ INT WINAPI NtGdiExtSelectClipRgn( HDC hdc, HRGN rgn, INT mode ) return ret; } -INT CDECL nulldrv_ExcludeClipRect( PHYSDEV dev, INT left, INT top, INT right, INT bottom ) -{ - return ERROR; -} - -INT CDECL nulldrv_IntersectClipRect( PHYSDEV dev, INT left, INT top, INT right, INT bottom ) -{ - return ERROR; -} - -INT CDECL nulldrv_OffsetClipRgn( PHYSDEV dev, INT x, INT y ) -{ - return ERROR; -} - /*********************************************************************** * __wine_set_visible_region (GDI32.@) */ diff --git a/dlls/gdi32/dibdrv/dc.c b/dlls/gdi32/dibdrv/dc.c index 27b89a1c7e9..997e8eb2300 100644 --- a/dlls/gdi32/dibdrv/dc.c +++ b/dlls/gdi32/dibdrv/dc.c @@ -643,11 +643,9 @@ const struct gdi_dc_funcs dib_driver = NULL, /* pEndPath */ NULL, /* pEnumFonts */ NULL, /* pEnumICMProfiles */ - NULL, /* pExcludeClipRect */ NULL, /* pExtDeviceMode */ NULL, /* pExtEscape */ dibdrv_ExtFloodFill, /* pExtFloodFill */ - NULL, /* pExtSelectClipRgn */ dibdrv_ExtTextOut, /* pExtTextOut */ dibdrv_FillPath, /* pFillPath */ NULL, /* pFillRgn */ @@ -680,12 +678,10 @@ const struct gdi_dc_funcs dib_driver = NULL, /* pGetTextFace */ NULL, /* pGetTextMetrics */ dibdrv_GradientFill, /* pGradientFill */ - NULL, /* pIntersectClipRect */ NULL, /* pInvertRgn */ dibdrv_LineTo, /* pLineTo */ NULL, /* pModifyWorldTransform */ NULL, /* pMoveTo */ - NULL, /* pOffsetClipRgn */ NULL, /* pOffsetViewportOrg */ NULL, /* pOffsetWindowOrg */ dibdrv_PaintRgn, /* pPaintRgn */ @@ -1234,11 +1230,9 @@ static const struct gdi_dc_funcs window_driver = NULL, /* pEndPath */ NULL, /* pEnumFonts */ NULL, /* pEnumICMProfiles */ - NULL, /* pExcludeClipRect */ NULL, /* pExtDeviceMode */ NULL, /* pExtEscape */ windrv_ExtFloodFill, /* pExtFloodFill */ - NULL, /* pExtSelectClipRgn */ windrv_ExtTextOut, /* pExtTextOut */ NULL, /* pFillPath */ NULL, /* pFillRgn */ @@ -1271,12 +1265,10 @@ static const struct gdi_dc_funcs window_driver = NULL, /* pGetTextFace */ NULL, /* pGetTextMetrics */ windrv_GradientFill, /* pGradientFill */ - NULL, /* pIntersectClipRect */ NULL, /* pInvertRgn */ windrv_LineTo, /* pLineTo */ NULL, /* pModifyWorldTransform */ NULL, /* pMoveTo */ - NULL, /* pOffsetClipRgn */ NULL, /* pOffsetViewportOrg */ NULL, /* pOffsetWindowOrg */ windrv_PaintRgn, /* pPaintRgn */ diff --git a/dlls/gdi32/driver.c b/dlls/gdi32/driver.c index f48c0f33cae..c02a9b1d324 100644 --- a/dlls/gdi32/driver.c +++ b/dlls/gdi32/driver.c @@ -890,11 +890,9 @@ const struct gdi_dc_funcs null_driver = nulldrv_EndPath, /* pEndPath */ nulldrv_EnumFonts, /* pEnumFonts */ nulldrv_EnumICMProfiles, /* pEnumICMProfiles */ - nulldrv_ExcludeClipRect, /* pExcludeClipRect */ nulldrv_ExtDeviceMode, /* pExtDeviceMode */ nulldrv_ExtEscape, /* pExtEscape */ nulldrv_ExtFloodFill, /* pExtFloodFill */ - nulldrv_ExtSelectClipRgn, /* pExtSelectClipRgn */ nulldrv_ExtTextOut, /* pExtTextOut */ nulldrv_FillPath, /* pFillPath */ nulldrv_FillRgn, /* pFillRgn */ @@ -927,12 +925,10 @@ const struct gdi_dc_funcs null_driver = nulldrv_GetTextFace, /* pGetTextFace */ nulldrv_GetTextMetrics, /* pGetTextMetrics */ nulldrv_GradientFill, /* pGradientFill */ - nulldrv_IntersectClipRect, /* pIntersectClipRect */ nulldrv_InvertRgn, /* pInvertRgn */ nulldrv_LineTo, /* pLineTo */ nulldrv_ModifyWorldTransform, /* pModifyWorldTransform */ nulldrv_MoveTo, /* pMoveTo */ - nulldrv_OffsetClipRgn, /* pOffsetClipRgn */ nulldrv_OffsetViewportOrgEx, /* pOffsetViewportOrg */ nulldrv_OffsetWindowOrgEx, /* pOffsetWindowOrg */ nulldrv_PaintRgn, /* pPaintRgn */ diff --git a/dlls/gdi32/enhmfdrv/init.c b/dlls/gdi32/enhmfdrv/init.c index 4ff283bd450..6aa15b49c02 100644 --- a/dlls/gdi32/enhmfdrv/init.c +++ b/dlls/gdi32/enhmfdrv/init.c @@ -57,11 +57,9 @@ static const struct gdi_dc_funcs emfdrv_driver = NULL, /* pEndPath */ NULL, /* pEnumFonts */ NULL, /* pEnumICMProfiles */ - NULL, /* pExcludeClipRect */ NULL, /* pExtDeviceMode */ NULL, /* pExtEscape */ NULL, /* pExtFloodFill */ - NULL, /* pExtSelectClipRgn */ EMFDRV_ExtTextOut, /* pExtTextOut */ EMFDRV_FillPath, /* pFillPath */ EMFDRV_FillRgn, /* pFillRgn */ @@ -94,12 +92,10 @@ static const struct gdi_dc_funcs emfdrv_driver = NULL, /* pGetTextFace */ NULL, /* pGetTextMetrics */ EMFDRV_GradientFill, /* pGradientFill */ - NULL, /* pIntersectClipRect */ EMFDRV_InvertRgn, /* pInvertRgn */ EMFDRV_LineTo, /* pLineTo */ EMFDRV_ModifyWorldTransform, /* pModifyWorldTransform */ NULL, /* pMoveTo */ - NULL, /* pOffsetClipRgn */ EMFDRV_OffsetViewportOrgEx, /* pOffsetViewportOrgEx */ EMFDRV_OffsetWindowOrgEx, /* pOffsetWindowOrgEx */ NULL, /* pPaintRgn */ diff --git a/dlls/gdi32/font.c b/dlls/gdi32/font.c index 77e8e3ca1d6..7eccc982bbe 100644 --- a/dlls/gdi32/font.c +++ b/dlls/gdi32/font.c @@ -3834,11 +3834,9 @@ const struct gdi_dc_funcs font_driver = NULL, /* pEndPath */ font_EnumFonts, /* pEnumFonts */ NULL, /* pEnumICMProfiles */ - NULL, /* pExcludeClipRect */ NULL, /* pExtDeviceMode */ NULL, /* pExtEscape */ NULL, /* pExtFloodFill */ - NULL, /* pExtSelectClipRgn */ NULL, /* pExtTextOut */ NULL, /* pFillPath */ NULL, /* pFillRgn */ @@ -3871,12 +3869,10 @@ const struct gdi_dc_funcs font_driver = font_GetTextFace, /* pGetTextFace */ font_GetTextMetrics, /* pGetTextMetrics */ NULL, /* pGradientFill */ - NULL, /* pIntersectClipRect */ NULL, /* pInvertRgn */ NULL, /* pLineTo */ NULL, /* pModifyWorldTransform */ NULL, /* pMoveTo */ - NULL, /* pOffsetClipRgn */ NULL, /* pOffsetViewportOrg */ NULL, /* pOffsetWindowOrg */ NULL, /* pPaintRgn */ diff --git a/dlls/gdi32/mfdrv/init.c b/dlls/gdi32/mfdrv/init.c index e22351b6644..53e9e3843fe 100644 --- a/dlls/gdi32/mfdrv/init.c +++ b/dlls/gdi32/mfdrv/init.c @@ -122,11 +122,9 @@ static const struct gdi_dc_funcs MFDRV_Funcs = MFDRV_EndPath, /* pEndPath */ NULL, /* pEnumFonts */ NULL, /* pEnumICMProfiles */ - NULL, /* pExcludeClipRect */ NULL, /* pExtDeviceMode */ MFDRV_ExtEscape, /* pExtEscape */ NULL, /* pExtFloodFill */ - NULL, /* pExtSelectClipRgn */ NULL, /* pExtTextOut */ MFDRV_FillPath, /* pFillPath */ MFDRV_FillRgn, /* pFillRgn */ @@ -159,12 +157,10 @@ static const struct gdi_dc_funcs MFDRV_Funcs = NULL, /* pGetTextFace */ NULL, /* pGetTextMetrics */ NULL, /* pGradientFill */ - NULL, /* pIntersectClipRect */ NULL, /* pInvertRgn */ NULL, /* pLineTo */ NULL, /* pModifyWorldTransform */ NULL, /* pMoveTo */ - NULL, /* pOffsetClipRgn */ MFDRV_OffsetViewportOrgEx, /* pOffsetViewportOrgEx */ MFDRV_OffsetWindowOrgEx, /* pOffsetWindowOrgEx */ NULL, /* pPaintRgn */ diff --git a/dlls/gdi32/ntgdi_private.h b/dlls/gdi32/ntgdi_private.h index c3ae797ddf6..5f3f88f870c 100644 --- a/dlls/gdi32/ntgdi_private.h +++ b/dlls/gdi32/ntgdi_private.h @@ -570,8 +570,6 @@ extern DWORD CDECL nulldrv_BlendImage( PHYSDEV dev, BITMAPINFO *info, const stru struct bitblt_coords *src, struct bitblt_coords *dst, BLENDFUNCTION func ) DECLSPEC_HIDDEN; extern BOOL CDECL nulldrv_CloseFigure( PHYSDEV dev ) DECLSPEC_HIDDEN; extern BOOL CDECL nulldrv_EndPath( PHYSDEV dev ) DECLSPEC_HIDDEN; -extern INT CDECL nulldrv_ExcludeClipRect( PHYSDEV dev, INT left, INT top, INT right, INT bottom ) DECLSPEC_HIDDEN; -extern INT CDECL nulldrv_ExtSelectClipRgn( PHYSDEV dev, HRGN rgn, INT mode ) DECLSPEC_HIDDEN; extern BOOL CDECL nulldrv_ExtTextOut( PHYSDEV dev, INT x, INT y, UINT flags, const RECT *rect, LPCWSTR str, UINT count, const INT *dx ) DECLSPEC_HIDDEN; extern BOOL CDECL nulldrv_FillPath( PHYSDEV dev ) DECLSPEC_HIDDEN; @@ -584,10 +582,8 @@ extern COLORREF CDECL nulldrv_GetPixel( PHYSDEV dev, INT x, INT y ) DECLSPEC_HID extern UINT CDECL nulldrv_GetSystemPaletteEntries( PHYSDEV dev, UINT start, UINT count, PALETTEENTRY *entries ) DECLSPEC_HIDDEN; extern BOOL CDECL nulldrv_GradientFill( PHYSDEV dev, TRIVERTEX *vert_array, ULONG nvert, void * grad_array, ULONG ngrad, ULONG mode ) DECLSPEC_HIDDEN; -extern INT CDECL nulldrv_IntersectClipRect( PHYSDEV dev, INT left, INT top, INT right, INT bottom ) DECLSPEC_HIDDEN; extern BOOL CDECL nulldrv_InvertRgn( PHYSDEV dev, HRGN rgn ) DECLSPEC_HIDDEN; extern BOOL CDECL nulldrv_ModifyWorldTransform( PHYSDEV dev, const XFORM *xform, DWORD mode ) DECLSPEC_HIDDEN; -extern INT CDECL nulldrv_OffsetClipRgn( PHYSDEV dev, INT x, INT y ) DECLSPEC_HIDDEN; extern BOOL CDECL nulldrv_OffsetViewportOrgEx( PHYSDEV dev, INT x, INT y, POINT *pt ) DECLSPEC_HIDDEN; extern BOOL CDECL nulldrv_OffsetWindowOrgEx( PHYSDEV dev, INT x, INT y, POINT *pt ) DECLSPEC_HIDDEN; extern BOOL CDECL nulldrv_PolyBezier( PHYSDEV dev, const POINT *points, DWORD count ) DECLSPEC_HIDDEN; diff --git a/dlls/gdi32/path.c b/dlls/gdi32/path.c index 531a8ae9bbd..c8f21633e82 100644 --- a/dlls/gdi32/path.c +++ b/dlls/gdi32/path.c @@ -2095,11 +2095,9 @@ const struct gdi_dc_funcs path_driver = pathdrv_EndPath, /* pEndPath */ NULL, /* pEnumFonts */ NULL, /* pEnumICMProfiles */ - NULL, /* pExcludeClipRect */ NULL, /* pExtDeviceMode */ NULL, /* pExtEscape */ NULL, /* pExtFloodFill */ - NULL, /* pExtSelectClipRgn */ pathdrv_ExtTextOut, /* pExtTextOut */ NULL, /* pFillPath */ NULL, /* pFillRgn */ @@ -2132,12 +2130,10 @@ const struct gdi_dc_funcs path_driver = NULL, /* pGetTextFace */ NULL, /* pGetTextMetrics */ NULL, /* pGradientFill */ - NULL, /* pIntersectClipRect */ NULL, /* pInvertRgn */ pathdrv_LineTo, /* pLineTo */ NULL, /* pModifyWorldTransform */ pathdrv_MoveTo, /* pMoveTo */ - NULL, /* pOffsetClipRgn */ NULL, /* pOffsetViewportOrg */ NULL, /* pOffsetWindowOrg */ NULL, /* pPaintRgn */ diff --git a/dlls/wineandroid.drv/init.c b/dlls/wineandroid.drv/init.c index b5eb4443328..dfd41fa0556 100644 --- a/dlls/wineandroid.drv/init.c +++ b/dlls/wineandroid.drv/init.c @@ -304,11 +304,9 @@ static const struct gdi_dc_funcs android_drv_funcs = NULL, /* pEndPath */ NULL, /* pEnumFonts */ NULL, /* pEnumICMProfiles */ - NULL, /* pExcludeClipRect */ NULL, /* pExtDeviceMode */ NULL, /* pExtEscape */ NULL, /* pExtFloodFill */ - NULL, /* pExtSelectClipRgn */ NULL, /* pExtTextOut */ NULL, /* pFillPath */ NULL, /* pFillRgn */ @@ -341,12 +339,10 @@ static const struct gdi_dc_funcs android_drv_funcs = NULL, /* pGetTextFace */ NULL, /* pGetTextMetrics */ NULL, /* pGradientFill */ - NULL, /* pIntersectClipRect */ NULL, /* pInvertRgn */ NULL, /* pLineTo */ NULL, /* pModifyWorldTransform */ NULL, /* pMoveTo */ - NULL, /* pOffsetClipRgn */ NULL, /* pOffsetViewportOrg */ NULL, /* pOffsetWindowOrg */ NULL, /* pPaintRgn */ diff --git a/dlls/winemac.drv/gdi.c b/dlls/winemac.drv/gdi.c index 1bb360a69e4..bd6a9fe82d1 100644 --- a/dlls/winemac.drv/gdi.c +++ b/dlls/winemac.drv/gdi.c @@ -284,11 +284,9 @@ static const struct gdi_dc_funcs macdrv_funcs = NULL, /* pEndPath */ NULL, /* pEnumFonts */ NULL, /* pEnumICMProfiles */ - NULL, /* pExcludeClipRect */ NULL, /* pExtDeviceMode */ NULL, /* pExtEscape */ NULL, /* pExtFloodFill */ - NULL, /* pExtSelectClipRgn */ NULL, /* pExtTextOut */ NULL, /* pFillPath */ NULL, /* pFillRgn */ @@ -321,12 +319,10 @@ static const struct gdi_dc_funcs macdrv_funcs = NULL, /* pGetTextFace */ NULL, /* pGetTextMetrics */ NULL, /* pGradientFill */ - NULL, /* pIntersectClipRect */ NULL, /* pInvertRgn */ NULL, /* pLineTo */ NULL, /* pModifyWorldTransform */ NULL, /* pMoveTo */ - NULL, /* pOffsetClipRgn */ NULL, /* pOffsetViewportOrg */ NULL, /* pOffsetWindowOrg */ NULL, /* pPaintRgn */ diff --git a/dlls/wineps.drv/init.c b/dlls/wineps.drv/init.c index 49f75805b34..da1f746c477 100644 --- a/dlls/wineps.drv/init.c +++ b/dlls/wineps.drv/init.c @@ -798,11 +798,9 @@ static const struct gdi_dc_funcs psdrv_funcs = NULL, /* pEndPath */ PSDRV_EnumFonts, /* pEnumFonts */ NULL, /* pEnumICMProfiles */ - NULL, /* pExcludeClipRect */ PSDRV_ExtDeviceMode, /* pExtDeviceMode */ PSDRV_ExtEscape, /* pExtEscape */ NULL, /* pExtFloodFill */ - NULL, /* pExtSelectClipRgn */ PSDRV_ExtTextOut, /* pExtTextOut */ PSDRV_FillPath, /* pFillPath */ NULL, /* pFillRgn */ @@ -835,12 +833,10 @@ static const struct gdi_dc_funcs psdrv_funcs = NULL, /* pGetTextFace */ PSDRV_GetTextMetrics, /* pGetTextMetrics */ NULL, /* pGradientFill */ - NULL, /* pIntersectClipRect */ NULL, /* pInvertRgn */ PSDRV_LineTo, /* pLineTo */ NULL, /* pModifyWorldTransform */ NULL, /* pMoveTo */ - NULL, /* pOffsetClipRgn */ NULL, /* pOffsetViewportOrg */ NULL, /* pOffsetWindowOrg */ PSDRV_PaintRgn, /* pPaintRgn */ diff --git a/dlls/winex11.drv/init.c b/dlls/winex11.drv/init.c index e2931b1690c..12a3e7b5232 100644 --- a/dlls/winex11.drv/init.c +++ b/dlls/winex11.drv/init.c @@ -363,11 +363,9 @@ static const struct gdi_dc_funcs x11drv_funcs = NULL, /* pEndPath */ NULL, /* pEnumFonts */ X11DRV_EnumICMProfiles, /* pEnumICMProfiles */ - NULL, /* pExcludeClipRect */ NULL, /* pExtDeviceMode */ X11DRV_ExtEscape, /* pExtEscape */ X11DRV_ExtFloodFill, /* pExtFloodFill */ - NULL, /* pExtSelectClipRgn */ NULL, /* pExtTextOut */ X11DRV_FillPath, /* pFillPath */ NULL, /* pFillRgn */ @@ -400,12 +398,10 @@ static const struct gdi_dc_funcs x11drv_funcs = NULL, /* pGetTextFace */ NULL, /* pGetTextMetrics */ X11DRV_GradientFill, /* pGradientFill */ - NULL, /* pIntersectClipRect */ NULL, /* pInvertRgn */ X11DRV_LineTo, /* pLineTo */ NULL, /* pModifyWorldTransform */ NULL, /* pMoveTo */ - NULL, /* pOffsetClipRgn */ NULL, /* pOffsetViewportOrg */ NULL, /* pOffsetWindowOrg */ X11DRV_PaintRgn, /* pPaintRgn */ diff --git a/dlls/winex11.drv/xrender.c b/dlls/winex11.drv/xrender.c index ff6dcd366be..3b21abdbce9 100644 --- a/dlls/winex11.drv/xrender.c +++ b/dlls/winex11.drv/xrender.c @@ -2175,11 +2175,9 @@ static const struct gdi_dc_funcs xrender_funcs = NULL, /* pEndPath */ NULL, /* pEnumFonts */ NULL, /* pEnumICMProfiles */ - NULL, /* pExcludeClipRect */ NULL, /* pExtDeviceMode */ xrenderdrv_ExtEscape, /* pExtEscape */ NULL, /* pExtFloodFill */ - NULL, /* pExtSelectClipRgn */ xrenderdrv_ExtTextOut, /* pExtTextOut */ NULL, /* pFillPath */ NULL, /* pFillRgn */ @@ -2212,12 +2210,10 @@ static const struct gdi_dc_funcs xrender_funcs = NULL, /* pGetTextFace */ NULL, /* pGetTextMetrics */ xrenderdrv_GradientFill, /* pGradientFill */ - NULL, /* pIntersectClipRect */ NULL, /* pInvertRgn */ NULL, /* pLineTo */ NULL, /* pModifyWorldTransform */ NULL, /* pMoveTo */ - NULL, /* pOffsetClipRgn */ NULL, /* pOffsetViewportOrg */ NULL, /* pOffsetWindowOrg */ NULL, /* pPaintRgn */ diff --git a/include/wine/gdi_driver.h b/include/wine/gdi_driver.h index ed41d6a9f6c..b38f36d7b2b 100644 --- a/include/wine/gdi_driver.h +++ b/include/wine/gdi_driver.h @@ -88,11 +88,9 @@ struct gdi_dc_funcs BOOL (CDECL *pEndPath)(PHYSDEV); BOOL (CDECL *pEnumFonts)(PHYSDEV,LPLOGFONTW,FONTENUMPROCW,LPARAM); INT (CDECL *pEnumICMProfiles)(PHYSDEV,ICMENUMPROCW,LPARAM); - INT (CDECL *pExcludeClipRect)(PHYSDEV,INT,INT,INT,INT); INT (CDECL *pExtDeviceMode)(LPSTR,HWND,LPDEVMODEA,LPSTR,LPSTR,LPDEVMODEA,LPSTR,DWORD); INT (CDECL *pExtEscape)(PHYSDEV,INT,INT,LPCVOID,INT,LPVOID); BOOL (CDECL *pExtFloodFill)(PHYSDEV,INT,INT,COLORREF,UINT); - INT (CDECL *pExtSelectClipRgn)(PHYSDEV,HRGN,INT); BOOL (CDECL *pExtTextOut)(PHYSDEV,INT,INT,UINT,const RECT*,LPCWSTR,UINT,const INT*); BOOL (CDECL *pFillPath)(PHYSDEV); BOOL (CDECL *pFillRgn)(PHYSDEV,HRGN,HBRUSH); @@ -125,12 +123,10 @@ struct gdi_dc_funcs INT (CDECL *pGetTextFace)(PHYSDEV,INT,LPWSTR); BOOL (CDECL *pGetTextMetrics)(PHYSDEV,TEXTMETRICW*); BOOL (CDECL *pGradientFill)(PHYSDEV,TRIVERTEX*,ULONG,void*,ULONG,ULONG); - INT (CDECL *pIntersectClipRect)(PHYSDEV,INT,INT,INT,INT); BOOL (CDECL *pInvertRgn)(PHYSDEV,HRGN); BOOL (CDECL *pLineTo)(PHYSDEV,INT,INT); BOOL (CDECL *pModifyWorldTransform)(PHYSDEV,const XFORM*,DWORD); BOOL (CDECL *pMoveTo)(PHYSDEV,INT,INT); - INT (CDECL *pOffsetClipRgn)(PHYSDEV,INT,INT); BOOL (CDECL *pOffsetViewportOrgEx)(PHYSDEV,INT,INT,POINT*); BOOL (CDECL *pOffsetWindowOrgEx)(PHYSDEV,INT,INT,POINT*); BOOL (CDECL *pPaintRgn)(PHYSDEV,HRGN); @@ -194,7 +190,7 @@ struct gdi_dc_funcs }; /* increment this when you change the DC function table */ -#define WINE_GDI_DRIVER_VERSION 55 +#define WINE_GDI_DRIVER_VERSION 56 #define GDI_PRIORITY_NULL_DRV 0 /* null driver */ #define GDI_PRIORITY_FONT_DRV 100 /* any font driver */