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
af3406ec
Commit
af3406ec
authored
Oct 29, 2015
by
Aric Stewart
Committed by
Alexandre Julliard
Oct 30, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hid: Implement HidD_GetSerialNumberString.
Signed-off-by:
Aric Stewart
<
aric@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
4e4f0f29
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
hid.spec
dlls/hid/hid.spec
+1
-1
hidd.c
dlls/hid/hidd.c
+6
-0
No files found.
dlls/hid/hid.spec
View file @
af3406ec
...
...
@@ -12,7 +12,7 @@
@ stub HidD_GetPhysicalDescriptor
@ stdcall HidD_GetPreparsedData(ptr ptr)
@ stdcall HidD_GetProductString(long ptr long)
@ st
ub HidD_GetSerialNumberString
@ st
dcall HidD_GetSerialNumberString(long ptr long)
@ stub HidD_Hello
@ stub HidD_SetConfiguration
@ stdcall HidD_SetFeature(long ptr long)
...
...
dlls/hid/hidd.c
View file @
af3406ec
...
...
@@ -99,6 +99,12 @@ BOOLEAN WINAPI HidD_GetProductString(HANDLE HidDeviceObject, PVOID Buffer, ULONG
return
DeviceIoControl
(
HidDeviceObject
,
IOCTL_HID_GET_PRODUCT_STRING
,
NULL
,
0
,
Buffer
,
BufferLength
,
NULL
,
NULL
);
}
BOOLEAN
WINAPI
HidD_GetSerialNumberString
(
HANDLE
HidDeviceObject
,
PVOID
Buffer
,
ULONG
BufferLength
)
{
TRACE
(
"(%p %p %u)
\n
"
,
HidDeviceObject
,
Buffer
,
BufferLength
);
return
DeviceIoControl
(
HidDeviceObject
,
IOCTL_HID_GET_SERIALNUMBER_STRING
,
NULL
,
0
,
Buffer
,
BufferLength
,
NULL
,
NULL
);
}
BOOLEAN
WINAPI
HidD_GetPreparsedData
(
HANDLE
HidDeviceObject
,
PHIDP_PREPARSED_DATA
*
PreparsedData
)
{
HID_COLLECTION_INFORMATION
info
;
...
...
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