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
eac15cae
Commit
eac15cae
authored
Jun 30, 2015
by
Aric Stewart
Committed by
Alexandre Julliard
Jul 01, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hid: Implement HidD_GetInputReport.
parent
5b790bde
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
hid.spec
dlls/hid/hid.spec
+1
-1
hidd.c
dlls/hid/hidd.c
+6
-0
hidsdi.h
include/ddk/hidsdi.h
+1
-0
No files found.
dlls/hid/hid.spec
View file @
eac15cae
...
...
@@ -5,7 +5,7 @@
@ stdcall HidD_GetFeature(long ptr long)
@ stdcall HidD_GetHidGuid(ptr)
@ stub HidD_GetIndexedString
@ st
ub HidD_GetInputReport
@ st
dcall HidD_GetInputReport(long ptr long)
@ stdcall HidD_GetManufacturerString(long ptr long)
@ stub HidD_GetMsGenreDescriptor
@ stub HidD_GetNumInputBuffers
...
...
dlls/hid/hidd.c
View file @
eac15cae
...
...
@@ -57,6 +57,12 @@ void WINAPI HidD_GetHidGuid(LPGUID guid)
*
guid
=
GUID_DEVINTERFACE_HID
;
}
BOOLEAN
WINAPI
HidD_GetInputReport
(
HANDLE
HidDeviceObject
,
PVOID
ReportBuffer
,
ULONG
ReportBufferLength
)
{
TRACE
(
"(%p %p %u)
\n
"
,
HidDeviceObject
,
ReportBuffer
,
ReportBufferLength
);
return
DeviceIoControl
(
HidDeviceObject
,
IOCTL_HID_GET_INPUT_REPORT
,
NULL
,
0
,
ReportBuffer
,
ReportBufferLength
,
NULL
,
NULL
);
}
BOOLEAN
WINAPI
HidD_GetManufacturerString
(
HANDLE
HidDeviceObject
,
PVOID
Buffer
,
ULONG
BufferLength
)
{
TRACE
(
"(%p %p %u)
\n
"
,
HidDeviceObject
,
Buffer
,
BufferLength
);
...
...
include/ddk/hidsdi.h
View file @
eac15cae
...
...
@@ -29,6 +29,7 @@ typedef LONG NTSTATUS;
BOOLEAN
WINAPI
HidD_GetFeature
(
HANDLE
HidDeviceObject
,
PVOID
ReportBuffer
,
ULONG
ReportBufferLength
);
void
WINAPI
HidD_GetHidGuid
(
LPGUID
guid
);
BOOLEAN
WINAPI
HidD_GetInputReport
(
HANDLE
HidDeviceObject
,
PVOID
ReportBuffer
,
ULONG
ReportBufferLength
);
BOOLEAN
WINAPI
HidD_GetManufacturerString
(
HANDLE
HidDeviceObject
,
PVOID
Buffer
,
ULONG
BufferLength
);
BOOLEAN
WINAPI
HidD_GetProductString
(
HANDLE
HidDeviceObject
,
PVOID
Buffer
,
ULONG
BufferLength
);
BOOLEAN
WINAPI
HidD_SetFeature
(
HANDLE
HidDeviceObject
,
PVOID
ReportBuffer
,
ULONG
ReportBufferLength
);
...
...
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