3.5.4.8 USB_HOST_HID_MOUSE_RESULT Enumeration

C

typedef enum {
  USB_HOST_HID_MOUSE_RESULT_FAILURE = USB_HOST_HID_MOUSE_RESULT_MIN,
  USB_HOST_HID_MOUSE_RESULT_INVALID_PARAMETER,
  USB_HOST_HID_MOUSE_RESULT_SUCCESS = 0
} USB_HOST_HID_MOUSE_RESULT;

Summary

USB Host HID MOUSE Result

This enumeration defines the possible returns values of USB Host HID mouse driver API. A function may only return some of the values in this enumeration. Refer to function description for details on which values will be returned.

Members

Members Description
USB_HOST_HID_MOUSE_RESULT_FAILURE = USB_HOST_HID_MOUSE_RESULT_MIN An unknown failure occurred.
USB_HOST_HID_MOUSE_RESULT_INVALID_PARAMETER Invalid or NULL parameter passed.
USB_HOST_HID_MOUSE_RESULT_SUCCESS = 0 Indicates that the operation succeeded or the request was accepted and will be processed.

Remarks

None.