Module: wine Branch: master Commit: 7d2917ced55bd68736f8f0d31c7cd148f932653a URL: http://source.winehq.org/git/wine.git/?a=commit;h=7d2917ced55bd68736f8f0d31c...
Author: Pierre d'Herbemont pdherbemont@free.fr Date: Mon Oct 16 17:51:08 2006 +0200
x11drv: Fix a typo in x11drv.h about X11DRV_GetTextExtentExPoint.
---
dlls/winex11.drv/x11drv.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/winex11.drv/x11drv.h b/dlls/winex11.drv/x11drv.h index 10de07c..1059e8f 100644 --- a/dlls/winex11.drv/x11drv.h +++ b/dlls/winex11.drv/x11drv.h @@ -163,8 +163,8 @@ extern LONG X11DRV_GetBitmapBits( HBITMA extern BOOL X11DRV_GetCharWidth( X11DRV_PDEVICE *physDev, UINT firstChar, UINT lastChar, LPINT buffer ); extern BOOL X11DRV_GetDCOrgEx( X11DRV_PDEVICE *physDev, LPPOINT lpp ); -extern BOOL X11DRV_GetTextExtentPoint( X11DRV_PDEVICE *physDev, LPCWSTR str, - INT count, LPSIZE size ); +extern BOOL X11DRV_GetTextExtentExPoint( X11DRV_PDEVICE *physDev, LPCWSTR str, INT count, + INT maxExt, LPINT lpnFit, LPINT alpDx, LPSIZE size ); extern BOOL X11DRV_GetTextMetrics(X11DRV_PDEVICE *physDev, TEXTMETRICW *metrics); extern BOOL X11DRV_PatBlt( X11DRV_PDEVICE *physDev, INT left, INT top, INT width, INT height, DWORD rop );