Troy Rollo : user: Fix argument type for EnableScrollBar.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Feb 14 07:28:15 CST 2006


Module: wine
Branch: refs/heads/master
Commit: d07448dd3a5b841af3ead589c6916c2de7435385
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=d07448dd3a5b841af3ead589c6916c2de7435385

Author: Troy Rollo <wine at troy.rollo.name>
Date:   Tue Feb 14 11:37:57 2006 +0100

user: Fix argument type for EnableScrollBar.

---

 dlls/user/scroll.c |    2 +-
 include/winuser.h  |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/user/scroll.c b/dlls/user/scroll.c
index 8a64672..79f283f 100644
--- a/dlls/user/scroll.c
+++ b/dlls/user/scroll.c
@@ -2014,7 +2014,7 @@ BOOL WINAPI ShowScrollBar(HWND hwnd, INT
  *
  * Enables or disables the scroll bars.
  */
-BOOL WINAPI EnableScrollBar( HWND hwnd, INT nBar, UINT flags )
+BOOL WINAPI EnableScrollBar( HWND hwnd, UINT nBar, UINT flags )
 {
     BOOL bFineWithMe;
     SCROLLBAR_INFO *infoPtr;
diff --git a/include/winuser.h b/include/winuser.h
index daac463..de09afe 100644
--- a/include/winuser.h
+++ b/include/winuser.h
@@ -4278,7 +4278,7 @@ INT         WINAPI DrawTextExW(HDC,LPWST
 #define     DrawTextEx WINELIB_NAME_AW(DrawTextEx)
 BOOL        WINAPI EmptyClipboard(void);
 BOOL        WINAPI EnableMenuItem(HMENU,UINT,UINT);
-BOOL        WINAPI EnableScrollBar(HWND,INT,UINT);
+BOOL        WINAPI EnableScrollBar(HWND,UINT,UINT);
 BOOL        WINAPI EnableWindow(HWND,BOOL);
 BOOL        WINAPI EndDeferWindowPos(HDWP);
 BOOL        WINAPI EndDialog(HWND,INT_PTR);




More information about the wine-cvs mailing list