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
26985e6b
Commit
26985e6b
authored
Aug 10, 2006
by
Aric Stewart
Committed by
Alexandre Julliard
Aug 11, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user: Implement MNS_NOTIFYBYPOS.
parent
c627cbd7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
menu.c
dlls/user/menu.c
+8
-3
No files found.
dlls/user/menu.c
View file @
26985e6b
...
...
@@ -37,7 +37,6 @@
* - MNS_AUTODISMISS
* - MNS_DRAGDROP
* - MNS_MODELESS
* - MNS_NOTIFYBYPOS
*/
#include "config.h"
...
...
@@ -2450,7 +2449,13 @@ static INT MENU_ExecFocusedItem( MTRACKER* pmt, HMENU hMenu, UINT wFlags )
PostMessageW
(
pmt
->
hOwnerWnd
,
WM_SYSCOMMAND
,
item
->
wID
,
MAKELPARAM
((
INT16
)
pmt
->
pt
.
x
,
(
INT16
)
pmt
->
pt
.
y
)
);
else
PostMessageW
(
pmt
->
hOwnerWnd
,
WM_COMMAND
,
item
->
wID
,
0
);
{
if
(
menu
->
dwStyle
&
MNS_NOTIFYBYPOS
)
PostMessageW
(
pmt
->
hOwnerWnd
,
WM_MENUCOMMAND
,
menu
->
FocusedItem
,
(
LPARAM
)
hMenu
);
else
PostMessageW
(
pmt
->
hOwnerWnd
,
WM_COMMAND
,
item
->
wID
,
0
);
}
}
return
item
->
wID
;
}
...
...
@@ -4901,7 +4906,7 @@ BOOL WINAPI SetMenuInfo (HMENU hMenu, LPCMENUINFO lpmi)
if
(
menu
->
dwStyle
&
MNS_AUTODISMISS
)
FIXME
(
"MNS_AUTODISMISS unimplemented
\n
"
);
if
(
menu
->
dwStyle
&
MNS_DRAGDROP
)
FIXME
(
"MNS_DRAGDROP unimplemented
\n
"
);
if
(
menu
->
dwStyle
&
MNS_MODELESS
)
FIXME
(
"MNS_MODELESS unimplemented
\n
"
);
if
(
menu
->
dwStyle
&
MNS_NOTIFYBYPOS
)
FIXME
(
"MNS_NOTIFYBYPOS
un
implemented
\n
"
);
if
(
menu
->
dwStyle
&
MNS_NOTIFYBYPOS
)
FIXME
(
"MNS_NOTIFYBYPOS
partially
implemented
\n
"
);
}
return
TRUE
;
...
...
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