From 53e832a84c7bc5b1549cbf31a9a0eba8b6266115 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Wed, 6 Nov 2019 22:28:31 +0100 Subject: Fix enum comments in doxygen compatible way --- include/usbmuxd.h | 6 +++--- 1 file 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 */ -- cgit v1.1-32-gdbae