| 280 | * parent collection if any. |
| 281 | */ |
| 282 | typedef struct HID_CollectionPath |
| 283 | { |
| 284 | uint8_t Type; /**< Collection type (e.g. "Generic Desktop"). */ |
| 285 | HID_Usage_t Usage; /**< Collection usage. */ |
| 286 | struct HID_CollectionPath *Parent; /**< Reference to parent collection, or \c NULL if root collection. */ |
| 287 | struct HID_CollectionPath *Next; /**< Reference to parent collection, or \c NULL if root collection. */ |
| 288 | } HID_CollectionPath_t; |
| 289 | |
| 290 | /** \brief HID Parser Report Item Attributes Structure. |
| 291 | * |
nothing calls this directly
no outgoing calls
no test coverage detected