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
4b98d789
Commit
4b98d789
authored
Apr 03, 2013
by
André Hentschel
Committed by
Alexandre Julliard
Apr 04, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hid: Add HidD_GetManufacturerString stub.
parent
32fb489f
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 @
4b98d789
...
...
@@ -6,7 +6,7 @@
@ stdcall HidD_GetHidGuid(ptr)
@ stub HidD_GetIndexedString
@ stub HidD_GetInputReport
@ st
ub HidD_GetManufacturerString
@ st
dcall HidD_GetManufacturerString(long ptr long)
@ stub HidD_GetMsGenreDescriptor
@ stub HidD_GetNumInputBuffers
@ stub HidD_GetPhysicalDescriptor
...
...
dlls/hid/main.c
View file @
4b98d789
...
...
@@ -64,6 +64,12 @@ void WINAPI HidD_GetHidGuid(LPGUID guid)
*
guid
=
HID_GUID
;
}
BOOLEAN
WINAPI
HidD_GetManufacturerString
(
HANDLE
HidDeviceObject
,
PVOID
Buffer
,
ULONG
BufferLength
)
{
FIXME
(
"(%p %p %u) stub
\n
"
,
HidDeviceObject
,
Buffer
,
BufferLength
);
return
FALSE
;
}
BOOLEAN
WINAPI
HidD_SetFeature
(
HANDLE
HidDeviceObject
,
PVOID
ReportBuffer
,
ULONG
ReportBufferLength
)
{
FIXME
(
"(%p %p %u) stub
\n
"
,
HidDeviceObject
,
ReportBuffer
,
ReportBufferLength
);
...
...
include/ddk/hidsdi.h
View file @
4b98d789
...
...
@@ -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_GetManufacturerString
(
HANDLE
HidDeviceObject
,
PVOID
Buffer
,
ULONG
BufferLength
);
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