From f45d7032ec6be2efdb3d1045fb491c266acebc2f Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Sun, 8 Apr 2012 00:36:40 +0200 Subject: replace uuid by udid, which is the correct term for it --- libusbmuxd/usbmuxd.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libusbmuxd/usbmuxd.h') diff --git a/libusbmuxd/usbmuxd.h b/libusbmuxd/usbmuxd.h index eabd216..b8283d6 100644 --- a/libusbmuxd/usbmuxd.h +++ b/libusbmuxd/usbmuxd.h @@ -38,7 +38,7 @@ extern "C" { typedef struct { int handle; int product_id; - char uuid[41]; + char udid[41]; } usbmuxd_device_info_t; /** @@ -104,9 +104,9 @@ int usbmuxd_get_device_list(usbmuxd_device_info_t **device_list); int usbmuxd_device_list_free(usbmuxd_device_info_t **device_list); /** - * Gets device information for the device specified by uuid. + * Gets device information for the device specified by udid. * - * @param uuid A device uuid of the device to look for. If uuid is NULL, + * @param udid A device UDID of the device to look for. If udid is NULL, * This function will return the first device found. * @param device Pointer to a previously allocated (or static) * usbmuxd_device_info_t that will be filled with the device info. @@ -114,7 +114,7 @@ int usbmuxd_device_list_free(usbmuxd_device_info_t **device_list); * @return 0 if no matching device is connected, 1 if the device was found, * or a negative value on error. */ -int usbmuxd_get_device_by_uuid(const char *uuid, usbmuxd_device_info_t *device); +int usbmuxd_get_device_by_udid(const char *udid, usbmuxd_device_info_t *device); /** * Request proxy connect to -- cgit v1.1-32-gdbae