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
202296c2
Commit
202296c2
authored
Sep 10, 2021
by
Rémi Bernon
Committed by
Alexandre Julliard
Sep 10, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dinput8/tests: Stop increasing the sequence in HID_GET_INPUT_REPORT.
Signed-off-by:
Rémi Bernon
<
rbernon@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
03e68ae3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
1 deletion
+1
-1
driver_hid.c
dlls/dinput8/tests/driver_hid.c
+0
-1
hid.c
dlls/dinput8/tests/hid.c
+1
-0
No files found.
dlls/dinput8/tests/driver_hid.c
View file @
202296c2
...
...
@@ -295,7 +295,6 @@ static NTSTATUS WINAPI driver_internal_ioctl( DEVICE_OBJECT *device, IRP *irp )
memset
(
packet
->
reportBuffer
,
0xa5
,
3
);
if
(
report_id
)
((
char
*
)
packet
->
reportBuffer
)[
0
]
=
report_id
;
((
char
*
)
packet
->
reportBuffer
)[
1
]
=
seq
++
;
irp
->
IoStatus
.
Information
=
3
;
ret
=
STATUS_SUCCESS
;
break
;
...
...
dlls/dinput8/tests/hid.c
View file @
202296c2
...
...
@@ -1839,6 +1839,7 @@ static void test_hidp( HANDLE file, HANDLE async_file, int report_id, BOOL polle
ret
=
GetOverlappedResult
(
async_file
,
&
overlapped
,
&
value
,
FALSE
);
ok
(
ret
,
"GetOverlappedResult failed, last error %u
\n
"
,
GetLastError
()
);
ok
(
value
==
(
report_id
?
3
:
4
),
"GetOverlappedResult returned length %u, expected 3
\n
"
,
value
);
todo_wine
ok
(
memcmp
(
report
,
buffer
+
caps
.
InputReportByteLength
,
caps
.
InputReportByteLength
),
"expected different report
\n
"
);
ok
(
!
memcmp
(
report
,
buffer
,
caps
.
InputReportByteLength
),
"expected identical reports
\n
"
);
...
...
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