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
7fd01cf7
Commit
7fd01cf7
authored
Jul 22, 2022
by
Arkadiusz Hiler
Committed by
Alexandre Julliard
Jul 25, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dinput/tests: Test GetObjectInfo() with three sliders and a proper format.
parent
101bf6c8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
0 deletions
+38
-0
joystick8.c
dlls/dinput/tests/joystick8.c
+38
-0
No files found.
dlls/dinput/tests/joystick8.c
View file @
7fd01cf7
...
...
@@ -2596,6 +2596,28 @@ static BOOL test_device_types( DWORD version )
return
success
;
}
struct
three_sliders_state
{
LONG
slider
[
3
];
};
static
const
DIOBJECTDATAFORMAT
df_three_sliders
[]
=
{
{
&
GUID_Slider
,
FIELD_OFFSET
(
struct
three_sliders_state
,
slider
[
0
]),
DIDFT_OPTIONAL
|
DIDFT_AXIS
|
DIDFT_ANYINSTANCE
,
DIDOI_ASPECTPOSITION
},
{
&
GUID_Slider
,
FIELD_OFFSET
(
struct
three_sliders_state
,
slider
[
1
]),
DIDFT_OPTIONAL
|
DIDFT_AXIS
|
DIDFT_ANYINSTANCE
,
DIDOI_ASPECTPOSITION
},
{
&
GUID_Slider
,
FIELD_OFFSET
(
struct
three_sliders_state
,
slider
[
2
]),
DIDFT_OPTIONAL
|
DIDFT_AXIS
|
DIDFT_ANYINSTANCE
,
DIDOI_ASPECTPOSITION
},
};
static
const
DIDATAFORMAT
c_df_three_sliders
=
{
sizeof
(
DIDATAFORMAT
),
sizeof
(
DIOBJECTDATAFORMAT
),
DIDF_ABSAXIS
,
sizeof
(
struct
three_sliders_state
),
ARRAY_SIZE
(
df_three_sliders
),
(
DIOBJECTDATAFORMAT
*
)
df_three_sliders
,
};
static
void
test_many_axes_joystick
(
void
)
{
#include "psh_hid_macros.h"
...
...
@@ -3070,6 +3092,22 @@ static void test_many_axes_joystick(void)
ok
(
hr
==
DI_OK
,
"GetObjectInfo returned: %#lx
\n
"
,
hr
);
check_object
(
&
objinst
,
&
expect_objects
[
16
],
&
todo_flags
);
/* make sure that we handle three sliders correctly when the format allows */
hr
=
IDirectInputDevice8_SetDataFormat
(
device
,
&
c_df_three_sliders
);
ok
(
hr
==
DI_OK
,
"SetDataFormat returned: %#lx
\n
"
,
hr
);
hr
=
IDirectInputDevice8_GetObjectInfo
(
device
,
&
objinst
,
offsetof
(
struct
three_sliders_state
,
slider
[
0
]),
DIPH_BYOFFSET
);
ok
(
hr
==
DI_OK
,
"GetObjectInfo returned: %#lx
\n
"
,
hr
);
check_object
(
&
objinst
,
&
expect_objects
[
6
],
NULL
);
hr
=
IDirectInputDevice8_GetObjectInfo
(
device
,
&
objinst
,
offsetof
(
struct
three_sliders_state
,
slider
[
1
]),
DIPH_BYOFFSET
);
ok
(
hr
==
DI_OK
,
"GetObjectInfo returned: %#lx
\n
"
,
hr
);
check_object
(
&
objinst
,
&
expect_objects
[
8
],
NULL
);
hr
=
IDirectInputDevice8_GetObjectInfo
(
device
,
&
objinst
,
offsetof
(
struct
three_sliders_state
,
slider
[
2
]),
DIPH_BYOFFSET
);
ok
(
hr
==
DI_OK
,
"GetObjectInfo returned: %#lx
\n
"
,
hr
);
check_object
(
&
objinst
,
&
expect_objects
[
9
],
NULL
);
ref
=
IDirectInputDevice8_Release
(
device
);
ok
(
ref
==
0
,
"Release returned %ld
\n
"
,
ref
);
...
...
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