Commit d07448dd authored by Troy Rollo's avatar Troy Rollo Committed by Alexandre Julliard

user: Fix argument type for EnableScrollBar.

parent 0fbd861b
......@@ -2014,7 +2014,7 @@ BOOL WINAPI ShowScrollBar(HWND hwnd, INT nBar, BOOL fShow)
*
* 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;
......
......@@ -4278,7 +4278,7 @@ INT WINAPI DrawTextExW(HDC,LPWSTR,INT,LPRECT,UINT,LPDRAWTEXTPARAMS);
#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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment