const
authorbarbieri <barbieri@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 12 Mar 2010 01:15:58 +0000 (01:15 +0000)
committerbarbieri <barbieri@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 12 Mar 2010 01:15:58 +0000 (01:15 +0000)
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@47149 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/bluez/E_Bluez.h
src/lib/bluez/e_bluez_devicefound.c

index 0111422..f3c99cc 100644 (file)
@@ -110,7 +110,7 @@ extern "C" {
 
   /* Device Found Methods */
   EAPI void e_bluez_devicefound_free(E_Bluez_Device_Found *device) EINA_ARG_NONNULL(1);
-  EAPI const char *e_bluez_devicefound_alias_get(E_Bluez_Device_Found *device) EINA_ARG_NONNULL(1);
+  EAPI const char *e_bluez_devicefound_alias_get(const E_Bluez_Device_Found *device) EINA_ARG_NONNULL(1);
 
   /* Devices Methods */
   EAPI Eina_Bool e_bluez_device_name_get(E_Bluez_Element *element, const char **name) EINA_ARG_NONNULL(1) EINA_WARN_UNUSED_RESULT;
index 718091d..2390384 100644 (file)
@@ -14,8 +14,13 @@ e_bluez_devicefound_free(E_Bluez_Device_Found *device)
    e_bluez_element_array_free(device->array, NULL);
 }
 
+/**
+ * Return the pointer to the stringshared alias for the given found device.
+ *
+ * @return stringshared pointer, or @c NULL if unknown.
+ */
 const char *
-e_bluez_devicefound_alias_get(E_Bluez_Device_Found *device)
+e_bluez_devicefound_alias_get(const E_Bluez_Device_Found *device)
 {
    E_Bluez_Element_Dict_Entry *entry;