Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexey Alyaev
wine
Commits
8dc97882
Commit
8dc97882
authored
16 years ago
by
Andrew Nguyen
Committed by
Alexandre Julliard
16 years ago
Browse files
Options
Downloads
Patches
Plain Diff
hid: Stub HidD_SetFeature.
parent
45a1f85d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/hid/hid.spec
+1
-1
1 addition, 1 deletion
dlls/hid/hid.spec
dlls/hid/main.c
+6
-0
6 additions, 0 deletions
dlls/hid/main.c
include/ddk/hidsdi.h
+1
-0
1 addition, 0 deletions
include/ddk/hidsdi.h
with
8 additions
and
1 deletion
dlls/hid/hid.spec
+
1
−
1
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
...
...
This diff is collapsed.
Click to expand it.
dlls/hid/main.c
+
6
−
0
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
;
}
This diff is collapsed.
Click to expand it.
include/ddk/hidsdi.h
+
1
−
0
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 */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment