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
47edb3cb
Commit
47edb3cb
authored
Jul 30, 2008
by
Paul Vriens
Committed by
Alexandre Julliard
Jul 30, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comctl32/tests: Run tests again on Win95.
parent
ba644e9c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
comboex.c
dlls/comctl32/tests/comboex.c
+8
-1
No files found.
dlls/comctl32/tests/comboex.c
View file @
47edb3cb
...
...
@@ -183,6 +183,13 @@ static void test_WM_LBUTTONDOWN(void)
WCHAR
buffer
[
3
];
static
const
UINT
choices
[]
=
{
8
,
9
,
10
,
11
,
12
,
14
,
16
,
18
,
20
,
22
,
24
,
26
,
28
,
36
,
48
,
72
};
static
const
WCHAR
stringFormat
[]
=
{
'%'
,
'2'
,
'd'
,
'\0'
};
BOOL
(
WINAPI
*
pGetComboBoxInfo
)(
HWND
,
PCOMBOBOXINFO
);
pGetComboBoxInfo
=
(
void
*
)
GetProcAddress
(
GetModuleHandleA
(
"user32.dll"
),
"GetComboBoxInfo"
);
if
(
!
pGetComboBoxInfo
){
skip
(
"GetComboBoxInfo is not available
\n
"
);
return
;
}
hComboEx
=
CreateWindowExA
(
0
,
WC_COMBOBOXEXA
,
NULL
,
WS_VISIBLE
|
WS_CHILD
|
CBS_DROPDOWN
,
0
,
0
,
200
,
150
,
...
...
@@ -205,7 +212,7 @@ static void test_WM_LBUTTONDOWN(void)
hEdit
=
(
HWND
)
SendMessage
(
hComboEx
,
CBEM_GETEDITCONTROL
,
0
,
0
);
cbInfo
.
cbSize
=
sizeof
(
COMBOBOXINFO
);
result
=
GetComboBoxInfo
(
hCombo
,
&
cbInfo
);
result
=
p
GetComboBoxInfo
(
hCombo
,
&
cbInfo
);
ok
(
result
,
"Failed to get combobox info structure. LastError=%d
\n
"
,
GetLastError
());
hList
=
cbInfo
.
hwndList
;
...
...
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