From 351f455dab10cac32e15ca157f9b17876becf5ee Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Wed, 26 Aug 2009 02:14:25 +0200 Subject: Renamed 'enum usbmuxd_device_event' to 'enum usbmuxd_event_type'. --- libusbmuxd/libusbmuxd.c | 2 +- libusbmuxd/usbmuxd.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libusbmuxd/libusbmuxd.c b/libusbmuxd/libusbmuxd.c index 2fbe139..8be5c4a 100644 --- a/libusbmuxd/libusbmuxd.c +++ b/libusbmuxd/libusbmuxd.c @@ -88,7 +88,7 @@ static int usbmuxd_get_result(int sfd, uint32_t tag, uint32_t * result) * A reference to a populated usbmuxd_event_t with information about the event * and the corresponding device will be passed to the callback function. */ -static void generate_event(usbmuxd_event_cb_t callback, const usbmuxd_device_info_t *dev, enum usbmuxd_device_event event, void *user_data) +static void generate_event(usbmuxd_event_cb_t callback, const usbmuxd_device_info_t *dev, enum usbmuxd_event_type event, void *user_data) { usbmuxd_event_t ev; diff --git a/libusbmuxd/usbmuxd.h b/libusbmuxd/usbmuxd.h index 2905381..a4e7e4a 100644 --- a/libusbmuxd/usbmuxd.h +++ b/libusbmuxd/usbmuxd.h @@ -17,7 +17,7 @@ typedef struct { /** * event types for event callback function */ -enum usbmuxd_device_event { +enum usbmuxd_event_type { UE_DEVICE_ADD = 1, UE_DEVICE_REMOVE }; -- cgit v1.1-32-gdbae