Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
9fcebb00
Commit
9fcebb00
authored
Feb 01, 2008
by
Bang Jun-young
Committed by
Alexandre Julliard
Feb 04, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Fix EndMenu() to match the PSDK.
parent
dee7722b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
menu.c
dlls/user32/menu.c
+2
-1
winuser.h
include/winuser.h
+1
-1
No files found.
dlls/user32/menu.c
View file @
9fcebb00
...
...
@@ -4252,7 +4252,7 @@ END:
* EndMenu (USER.187)
* EndMenu (USER32.@)
*/
void
WINAPI
EndMenu
(
void
)
BOOL
WINAPI
EndMenu
(
void
)
{
/* if we are in the menu code, and it is active */
if
(
!
fEndMenu
&&
top_popup
)
...
...
@@ -4266,6 +4266,7 @@ void WINAPI EndMenu(void)
/* don't end up with an orphaned menu */
PostMessageW
(
top_popup
,
WM_CANCELMODE
,
0
,
0
);
}
return
fEndMenu
;
}
...
...
include/winuser.h
View file @
9fcebb00
...
...
@@ -4482,7 +4482,7 @@ WINUSERAPI BOOL WINAPI EnableScrollBar(HWND,UINT,UINT);
WINUSERAPI
BOOL
WINAPI
EnableWindow
(
HWND
,
BOOL
);
WINUSERAPI
BOOL
WINAPI
EndDeferWindowPos
(
HDWP
);
WINUSERAPI
BOOL
WINAPI
EndDialog
(
HWND
,
INT_PTR
);
WINUSERAPI
VOID
WINAPI
EndMenu
(
void
);
WINUSERAPI
BOOL
WINAPI
EndMenu
(
void
);
WINUSERAPI
BOOL
WINAPI
EndPaint
(
HWND
,
const
PAINTSTRUCT
*
);
WINUSERAPI
BOOL
WINAPI
EnumChildWindows
(
HWND
,
WNDENUMPROC
,
LPARAM
);
WINUSERAPI
UINT
WINAPI
EnumClipboardFormats
(
UINT
);
...
...
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