user: Fix argument type for EnableScrollBar.
This commit is contained in:
parent
0fbd861bdd
commit
d07448dd3a
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue