mirror of
https://github.com/reactos/reactos.git
synced 2025-05-04 18:31:40 +00:00

- Implement a HID parsing library, which is based on Haiku`s exellent HID Stack - Implement HidP_FreeCollection, HidP_GetCaps, HidP_GetCollectionDescription, HidP_MaxUsageListLength, HidP_GetSpecificValueCaps, HidP_GetUsages, HidP_GetScaledUsageValue - hidparse driver is now implemented enough to support a hid mouse - Tested in VBox 4.1.4 + WinXP + ReactOS usbohci+ mouhid+ hidclass+ hidparse+hidusb svn path=/branches/usb-bringup/; revision=54834
13 lines
191 B
CMake
13 lines
191 B
CMake
|
|
add_definitions(
|
|
-DUNICODE -D_UNICODE
|
|
-DNDEBUG=1)
|
|
|
|
list(APPEND SOURCE
|
|
hidparser.c
|
|
parser.c
|
|
api.c)
|
|
|
|
add_library(hidparser ${SOURCE})
|
|
add_dependencies(hidparser bugcodes)
|
|
|