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
8418ae53
Commit
8418ae53
authored
Jan 29, 2013
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jan 30, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32: Test WM_GETDLGCODE return value for TreeView.
parent
ac4192e7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
treeview.c
dlls/comctl32/tests/treeview.c
+15
-0
No files found.
dlls/comctl32/tests/treeview.c
View file @
8418ae53
...
...
@@ -1950,6 +1950,19 @@ static void test_TVM_HITTEST(void)
DestroyWindow
(
hTree
);
}
static
void
test_WM_GETDLGCODE
(
void
)
{
DWORD
code
;
HWND
hTree
;
hTree
=
create_treeview_control
(
0
);
code
=
SendMessageA
(
hTree
,
WM_GETDLGCODE
,
VK_TAB
,
0
);
ok
(
code
==
(
DLGC_WANTCHARS
|
DLGC_WANTARROWS
),
"0x%08x
\n
"
,
code
);
DestroyWindow
(
hTree
);
}
START_TEST
(
treeview
)
{
HMODULE
hComctl32
;
...
...
@@ -2023,6 +2036,7 @@ START_TEST(treeview)
test_TVS_CHECKBOXES
();
test_TVM_GETNEXTITEM
();
test_TVM_HITTEST
();
test_WM_GETDLGCODE
();
if
(
!
load_v6_module
(
&
ctx_cookie
,
&
hCtx
))
{
...
...
@@ -2048,6 +2062,7 @@ START_TEST(treeview)
/* comctl32 version 6 tests start here */
test_expandedimage
();
test_htreeitem_layout
();
test_WM_GETDLGCODE
();
unload_v6_module
(
ctx_cookie
,
hCtx
);
...
...
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