Module: wine Branch: master Commit: d4fdeeaa46efdbf3cfaa246dedea96491439b7f7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d4fdeeaa46efdbf3cfaa246ded... Author: Andrew Talbot <Andrew.Talbot(a)talbotville.com> Date: Mon Jan 8 20:17:44 2007 +0000 gdi32: Remove unused function. --- dlls/gdi32/path.c | 13 +------------ 1 files changed, 1 insertions(+), 12 deletions(-) diff --git a/dlls/gdi32/path.c b/dlls/gdi32/path.c index a045d7b..306ed37 100644 --- a/dlls/gdi32/path.c +++ b/dlls/gdi32/path.c @@ -122,18 +122,7 @@ static inline void INTERNAL_LPTODP_FLOAT dc->xformWorld2Vport.eDy; } -/* Performs a world-to-viewport transformation on the specified width. - */ -static inline void INTERNAL_WSTODS(DC *dc, DWORD *width) -{ - POINT pt[2]; - pt[0].x = pt[0].y = 0; - pt[1].x = *width; - pt[1].y = 0; - LPtoDP(dc->hSelf, pt, 2); - *width = pt[1].x - pt[0].x; -} - + /*********************************************************************** * BeginPath (GDI32.@) */