Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbhid/include/usb/hid/hidpath.h

    r9d58539 rb7fd2a0  
    3636#define LIBUSB_HIDPATH_H_
    3737
     38#include <errno.h>
    3839#include <usb/hid/hidparser.h>
    3940#include <stdint.h>
     
    4142
    4243
    43 /*---------------------------------------------------------------------------*/
     44
    4445/*
    4546 * Flags of usage paths comparison modes.
     
    7374#define USB_HID_PATH_COMPARE_ANYWHERE           8
    7475
    75 /*----------------------------------------------------------------------------*/
     76
    7677/**
    7778 * Item of usage path structure. Last item of linked list describes one item
     
    9394
    9495
    95 /*---------------------------------------------------------------------------*/
     96
    9697/**
    9798 * USB HID usage path structure.
     
    112113} usb_hid_report_path_t;
    113114
    114 /*---------------------------------------------------------------------------*/
     115
    115116usb_hid_report_path_t *usb_hid_report_path(void);
    116117
    117118void usb_hid_report_path_free(usb_hid_report_path_t *path);
    118119
    119 int usb_hid_report_path_set_report_id(usb_hid_report_path_t *usage_path,
     120errno_t usb_hid_report_path_set_report_id(usb_hid_report_path_t *usage_path,
    120121                uint8_t report_id);
    121122
    122 int usb_hid_report_path_append_item(usb_hid_report_path_t *usage_path,
     123errno_t usb_hid_report_path_append_item(usb_hid_report_path_t *usage_path,
    123124                int32_t usage_page, int32_t usage);
    124125
Note: See TracChangeset for help on using the changeset viewer.