winebus.sys: Add a VID and PID to mouse and keyboard devices.
Signed-off-by: Rémi Bernon <rbernon@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
7efa63eead
commit
8fb10882c9
|
@ -143,6 +143,8 @@ static const WCHAR mouse_bus_id[] = {'W','I','N','E','M','O','U','S','E',0};
|
|||
static const struct device_desc mouse_device_desc =
|
||||
{
|
||||
.busid = mouse_bus_id,
|
||||
.vid = 0x845e,
|
||||
.pid = 0x0001,
|
||||
.input = -1,
|
||||
.manufacturer = {"The Wine Project"},
|
||||
.product = {"Wine HID mouse"},
|
||||
|
@ -241,6 +243,8 @@ static const WCHAR keyboard_bus_id[] = {'W','I','N','E','K','E','Y','B','O','A',
|
|||
static const struct device_desc keyboard_device_desc =
|
||||
{
|
||||
.busid = keyboard_bus_id,
|
||||
.vid = 0x845e,
|
||||
.pid = 0x0002,
|
||||
.input = -1,
|
||||
.manufacturer = {"The Wine Project"},
|
||||
.product = {"Wine HID keyboard"},
|
||||
|
|
Loading…
Reference in New Issue