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
b7652d89
Commit
b7652d89
authored
Jan 10, 2006
by
Troy Rollo
Committed by
Alexandre Julliard
Jan 10, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user: Fix return type of EnableMenuItem.
parent
e80a85a3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
menu.c
dlls/user/menu.c
+1
-1
user16.c
dlls/user/user16.c
+1
-1
winuser16.h
include/wine/winuser16.h
+1
-1
winuser.h
include/winuser.h
+1
-1
No files found.
dlls/user/menu.c
View file @
b7652d89
...
...
@@ -3235,7 +3235,7 @@ DWORD WINAPI CheckMenuItem( HMENU hMenu, UINT id, UINT flags )
/**********************************************************************
* EnableMenuItem (USER32.@)
*/
UINT
WINAPI
EnableMenuItem
(
HMENU
hMenu
,
UINT
wItemID
,
UINT
wFlags
)
BOOL
WINAPI
EnableMenuItem
(
HMENU
hMenu
,
UINT
wItemID
,
UINT
wFlags
)
{
UINT
oldflags
;
MENUITEM
*
item
;
...
...
dlls/user/user16.c
View file @
b7652d89
...
...
@@ -531,7 +531,7 @@ BOOL16 WINAPI CheckMenuItem16( HMENU16 hMenu, UINT16 id, UINT16 flags )
/**********************************************************************
* EnableMenuItem (USER.155)
*/
UINT
16
WINAPI
EnableMenuItem16
(
HMENU16
hMenu
,
UINT16
wItemID
,
UINT16
wFlags
)
BOOL
16
WINAPI
EnableMenuItem16
(
HMENU16
hMenu
,
UINT16
wItemID
,
UINT16
wFlags
)
{
return
EnableMenuItem
(
HMENU_32
(
hMenu
),
wItemID
,
wFlags
);
}
...
...
include/wine/winuser16.h
View file @
b7652d89
...
...
@@ -716,7 +716,7 @@ BOOL16 WINAPI DrawIconEx16(HDC16,INT16,INT16,HICON16,INT16,INT16,
VOID
WINAPI
DrawMenuBar16
(
HWND16
);
INT16
WINAPI
DrawText16
(
HDC16
,
LPCSTR
,
INT16
,
LPRECT16
,
UINT16
);
BOOL16
WINAPI
EmptyClipboard16
(
void
);
UINT
16
WINAPI
EnableMenuItem16
(
HMENU16
,
UINT16
,
UINT16
);
BOOL
16
WINAPI
EnableMenuItem16
(
HMENU16
,
UINT16
,
UINT16
);
BOOL16
WINAPI
EnableScrollBar16
(
HWND16
,
INT16
,
UINT16
);
BOOL16
WINAPI
EnableWindow16
(
HWND16
,
BOOL16
);
BOOL16
WINAPI
EndDeferWindowPos16
(
HDWP16
);
...
...
include/winuser.h
View file @
b7652d89
...
...
@@ -4260,7 +4260,7 @@ INT WINAPI DrawTextExA(HDC,LPSTR,INT,LPRECT,UINT,LPDRAWTEXTPARAMS);
INT
WINAPI
DrawTextExW
(
HDC
,
LPWSTR
,
INT
,
LPRECT
,
UINT
,
LPDRAWTEXTPARAMS
);
#define DrawTextEx WINELIB_NAME_AW(DrawTextEx)
BOOL
WINAPI
EmptyClipboard
(
void
);
UINT
WINAPI
EnableMenuItem
(
HMENU
,
UINT
,
UINT
);
BOOL
WINAPI
EnableMenuItem
(
HMENU
,
UINT
,
UINT
);
BOOL
WINAPI
EnableScrollBar
(
HWND
,
INT
,
UINT
);
BOOL
WINAPI
EnableWindow
(
HWND
,
BOOL
);
BOOL
WINAPI
EndDeferWindowPos
(
HDWP
);
...
...
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