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
9e3f9408
Commit
9e3f9408
authored
Sep 20, 2021
by
Rémi Bernon
Committed by
Alexandre Julliard
Sep 20, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winebus.sys: Use WINEBUS\ as a common hardware ids prefix.
Signed-off-by:
Rémi Bernon
<
rbernon@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f37ae29b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
+12
-3
main.c
dlls/winebus.sys/main.c
+12
-3
No files found.
dlls/winebus.sys/main.c
View file @
9e3f9408
...
...
@@ -229,13 +229,22 @@ static WCHAR *get_device_id(DEVICE_OBJECT *device)
static
WCHAR
*
get_hardware_ids
(
DEVICE_OBJECT
*
device
)
{
static
const
WCHAR
input_format
[]
=
L"&MI_%02u"
;
static
const
WCHAR
winebus_format
[]
=
L"WINEBUS
\\
VID_%04X&PID_%04X"
;
struct
device_extension
*
ext
=
(
struct
device_extension
*
)
device
->
DeviceExtension
;
DWORD
pos
=
0
,
len
=
0
,
input_len
=
0
,
winebus_len
=
25
;
WCHAR
*
dst
;
if
((
dst
=
ExAllocatePool
(
PagedPool
,
(
wcslen
(
ext
->
desc
.
busid
)
+
2
)
*
sizeof
(
WCHAR
))))
if
(
ext
->
desc
.
input
!=
-
1
)
input_len
=
14
;
len
+=
winebus_len
+
input_len
+
1
;
if
((
dst
=
ExAllocatePool
(
PagedPool
,
(
len
+
1
)
*
sizeof
(
WCHAR
))))
{
wcscpy
(
dst
,
ext
->
desc
.
busid
);
dst
[
wcslen
(
dst
)
+
1
]
=
0
;
pos
+=
swprintf
(
dst
+
pos
,
len
-
pos
,
winebus_format
,
ext
->
desc
.
vid
,
ext
->
desc
.
pid
);
if
(
input_len
)
pos
+=
swprintf
(
dst
+
pos
,
len
-
pos
,
input_format
,
ext
->
desc
.
input
);
pos
+=
1
;
dst
[
pos
]
=
0
;
}
return
dst
;
...
...
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