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
8dc97882
Commit
8dc97882
authored
Feb 23, 2009
by
Andrew Nguyen
Committed by
Alexandre Julliard
Feb 23, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hid: Stub HidD_SetFeature.
parent
45a1f85d
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
main.c
dlls/hid/main.c
+6
-0
hidsdi.h
include/ddk/hidsdi.h
+1
-0
No files found.
dlls/hid/hid.spec
View file @
8dc97882
...
...
@@ -15,7 +15,7 @@
@ stub HidD_GetSerialNumberString
@ stub HidD_Hello
@ stub HidD_SetConfiguration
@ st
ub HidD_SetFeature
@ st
dcall HidD_SetFeature(long ptr long)
@ stub HidD_SetNumInputBuffers
@ stub HidD_SetOutputReport
@ stub HidP_GetButtonCaps
...
...
dlls/hid/main.c
View file @
8dc97882
...
...
@@ -63,3 +63,9 @@ void WINAPI HidD_GetHidGuid(LPGUID guid)
TRACE
(
"(%p)
\n
"
,
guid
);
*
guid
=
HID_GUID
;
}
BOOLEAN
WINAPI
HidD_SetFeature
(
HANDLE
HidDeviceObject
,
PVOID
ReportBuffer
,
ULONG
ReportBufferLength
)
{
FIXME
(
"(%p %p %u) stub
\n
"
,
HidDeviceObject
,
ReportBuffer
,
ReportBufferLength
);
return
FALSE
;
}
include/ddk/hidsdi.h
View file @
8dc97882
...
...
@@ -29,5 +29,6 @@ typedef LONG NTSTATUS;
BOOLEAN
WINAPI
HidD_GetFeature
(
HANDLE
HidDeviceObject
,
PVOID
ReportBuffer
,
ULONG
ReportBufferLength
);
void
WINAPI
HidD_GetHidGuid
(
LPGUID
guid
);
BOOLEAN
WINAPI
HidD_SetFeature
(
HANDLE
HidDeviceObject
,
PVOID
ReportBuffer
,
ULONG
ReportBufferLength
);
#endif
/* __WINE_HIDSDI_H */
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