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
0dc18866
Commit
0dc18866
authored
Feb 17, 2014
by
Vincent Povirk
Committed by
Alexandre Julliard
Mar 12, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Put some menu items in the test_menu_trackagain menu.
parent
b8d80364
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
menu.c
dlls/user32/tests/menu.c
+6
-1
No files found.
dlls/user32/tests/menu.c
View file @
0dc18866
...
...
@@ -3251,8 +3251,13 @@ static void test_menu_trackagain(void)
g_hmenu
=
CreatePopupMenu
();
ok
(
g_hmenu
!=
NULL
,
"CreateMenu failed with error %d
\n
"
,
GetLastError
());
ret
=
AppendMenuA
(
g_hmenu
,
MF_STRING
,
100
,
"item 1"
);
ok
(
ret
,
"AppendMenu failed.
\n
"
);
ret
=
AppendMenuA
(
g_hmenu
,
MF_STRING
,
101
,
"item 2"
);
ok
(
ret
,
"AppendMenu failed.
\n
"
);
ret
=
TrackPopupMenu
(
g_hmenu
,
0
,
100
,
100
,
0
,
hwnd
,
NULL
);
todo_wine
ok
(
ret
==
FALS
E
,
"got %d
\n
"
,
ret
);
ok
(
ret
==
TRU
E
,
"got %d
\n
"
,
ret
);
DestroyMenu
(
g_hmenu
);
DestroyWindow
(
hwnd
);
...
...
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