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
88bc48fb
Commit
88bc48fb
authored
Aug 05, 2021
by
Rémi Bernon
Committed by
Alexandre Julliard
Aug 05, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hidclass.sys: Rename IO_STATUS_BLOCK irp_status to io.
Signed-off-by:
Rémi Bernon
<
rbernon@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b87b6a96
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
device.c
dlls/hidclass.sys/device.c
+6
-7
No files found.
dlls/hidclass.sys/device.c
View file @
88bc48fb
...
...
@@ -177,9 +177,8 @@ static void HID_Device_processQueue(DEVICE_OBJECT *device)
static
DWORD
CALLBACK
hid_device_thread
(
void
*
args
)
{
DEVICE_OBJECT
*
device
=
(
DEVICE_OBJECT
*
)
args
;
IO_STATUS_BLOCK
irp_status
;
HID_XFER_PACKET
*
packet
;
IO_STATUS_BLOCK
io
;
DWORD
rc
;
BASE_DEVICE_EXTENSION
*
ext
=
device
->
DeviceExtension
;
...
...
@@ -196,9 +195,9 @@ static DWORD CALLBACK hid_device_thread(void *args)
packet
->
reportId
=
0
;
call_minidriver
(
IOCTL_HID_GET_INPUT_REPORT
,
ext
->
u
.
pdo
.
parent_fdo
,
NULL
,
0
,
packet
,
sizeof
(
*
packet
),
&
i
rp_status
);
sizeof
(
*
packet
),
&
i
o
);
if
(
i
rp_status
.
Status
==
STATUS_SUCCESS
)
if
(
i
o
.
Status
==
STATUS_SUCCESS
)
{
RingBuffer_Write
(
ext
->
u
.
pdo
.
ring_buffer
,
packet
);
hid_device_send_input
(
device
,
packet
);
...
...
@@ -221,15 +220,15 @@ static DWORD CALLBACK hid_device_thread(void *args)
while
(
1
)
{
call_minidriver
(
IOCTL_HID_READ_REPORT
,
ext
->
u
.
pdo
.
parent_fdo
,
NULL
,
0
,
packet
->
reportBuffer
,
report_size
,
&
i
rp_status
);
packet
->
reportBuffer
,
report_size
,
&
i
o
);
rc
=
WaitForSingleObject
(
ext
->
u
.
pdo
.
halt_event
,
0
);
if
(
rc
==
WAIT_OBJECT_0
)
exit_now
=
TRUE
;
if
(
!
exit_now
&&
i
rp_status
.
Status
==
STATUS_SUCCESS
)
if
(
!
exit_now
&&
i
o
.
Status
==
STATUS_SUCCESS
)
{
packet
->
reportBufferLen
=
i
rp_status
.
Information
;
packet
->
reportBufferLen
=
i
o
.
Information
;
if
(
ext
->
u
.
pdo
.
preparsed_data
->
reports
[
0
].
reportID
)
packet
->
reportId
=
packet
->
reportBuffer
[
0
];
else
...
...
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