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
ab8f8258
Commit
ab8f8258
authored
Jun 29, 2021
by
Rémi Bernon
Committed by
Alexandre Julliard
Jun 30, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winebus.sys: Add missing keyboard free_device callback.
Signed-off-by:
Rémi Bernon
<
rbernon@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2862ff6b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
main.c
dlls/winebus.sys/main.c
+5
-0
No files found.
dlls/winebus.sys/main.c
View file @
ab8f8258
...
...
@@ -552,6 +552,10 @@ static void mouse_device_create(void)
IoInvalidateDeviceRelations
(
bus_pdo
,
BusRelations
);
}
static
void
keyboard_free_device
(
DEVICE_OBJECT
*
device
)
{
}
static
NTSTATUS
keyboard_get_reportdescriptor
(
DEVICE_OBJECT
*
device
,
BYTE
*
buffer
,
DWORD
length
,
DWORD
*
ret_length
)
{
TRACE
(
"buffer %p, length %u.
\n
"
,
buffer
,
length
);
...
...
@@ -606,6 +610,7 @@ static NTSTATUS keyboard_set_feature_report(DEVICE_OBJECT *device, UCHAR id, BYT
static
const
platform_vtbl
keyboard_vtbl
=
{
.
free_device
=
keyboard_free_device
,
.
get_reportdescriptor
=
keyboard_get_reportdescriptor
,
.
get_string
=
keyboard_get_string
,
.
begin_report_processing
=
keyboard_begin_report_processing
,
...
...
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