Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
d07448dd
Commit
d07448dd
authored
Feb 14, 2006
by
Troy Rollo
Committed by
Alexandre Julliard
Feb 14, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user: Fix argument type for EnableScrollBar.
parent
0fbd861b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
scroll.c
dlls/user/scroll.c
+1
-1
winuser.h
include/winuser.h
+1
-1
No files found.
dlls/user/scroll.c
View file @
d07448dd
...
...
@@ -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
,
U
INT
nBar
,
UINT
flags
)
{
BOOL
bFineWithMe
;
SCROLLBAR_INFO
*
infoPtr
;
...
...
include/winuser.h
View file @
d07448dd
...
...
@@ -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
,
U
INT
,
UINT
);
BOOL
WINAPI
EnableWindow
(
HWND
,
BOOL
);
BOOL
WINAPI
EndDeferWindowPos
(
HDWP
);
BOOL
WINAPI
EndDialog
(
HWND
,
INT_PTR
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment