diff options
-rw-r--r-- | include/usbmuxd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/usbmuxd.h b/include/usbmuxd.h index 9323717..efda52a 100644 --- a/include/usbmuxd.h +++ b/include/usbmuxd.h @@ -30,9 +30,9 @@ extern "C" { /** Device lookup options for usbmuxd_get_device. */ enum usbmux_lookup_options { - DEVICE_LOOKUP_USBMUX = 1 << 1, /** include USBMUX devices during lookup */ - DEVICE_LOOKUP_NETWORK = 1 << 2, /** include network devices during lookup */ - DEVICE_LOOKUP_PREFER_NETWORK = 1 << 3 /** prefer network connection if device is available via USBMUX *and* network */ + DEVICE_LOOKUP_USBMUX = 1 << 1, /**< include USBMUX devices during lookup */ + DEVICE_LOOKUP_NETWORK = 1 << 2, /**< include network devices during lookup */ + DEVICE_LOOKUP_PREFER_NETWORK = 1 << 3 /**< prefer network connection if device is available via USBMUX *and* network */ }; /** Type of connection a device is available on */ |