From wine-patches Thu Feb 01 23:03:54 2007 From: Fabian Franz Date: Thu, 01 Feb 2007 23:03:54 +0000 To: wine-patches Subject: [PATCH 3/3] gdi32: Fixed wrong type for pPolylineTo in DC_FUNCTIONS Message-Id: X-MARC-Message: https://marc.info/?l=wine-patches&m=117037619019112 Signed-off-by: Fabian Franz --- dlls/gdi32/gdi_private.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/gdi32/gdi_private.h b/dlls/gdi32/gdi_private.h index 07e9d49..6f47253 100644 --- a/dlls/gdi32/gdi_private.h +++ b/dlls/gdi32/gdi_private.h @@ -165,7 +165,7 @@ typedef struct tagDC_FUNCS BOOL (*pPolyPolyline)(PHYSDEV,const POINT*,const DWORD*,DWORD); BOOL (*pPolygon)(PHYSDEV,const POINT*,INT); BOOL (*pPolyline)(PHYSDEV,const POINT*,INT); - BOOL (*pPolylineTo)(PHYSDEV,const POINT*,INT); + BOOL (*pPolylineTo)(PHYSDEV,const POINT*,DWORD); UINT (*pRealizeDefaultPalette)(PHYSDEV); UINT (*pRealizePalette)(PHYSDEV,HPALETTE,BOOL); BOOL (*pRectangle)(PHYSDEV,INT,INT,INT,INT); -- 1.4.4.3