+2013-02-01 Mike Blumenkrantz
+
+ * added eet_data_descriptor_name_get()
+
2013-01-31 Guillaume Friloux
* Fix a memory leak in ecore_con_dns
eina_xattr_fd_copy()
* Added eina_file_copy()
* Add eet_mmap.
+ * added eet_data_descriptor_name_get()
* Add eio_eet_sync symbols.
* Add infrastructure to handle buggy touchscreen in Ecore_Input_Evas.
* Fix evas gif loader to return the correct frame duration
* Prevent a crash even if an invalid object is swallowed into an edje object.
* Fix cache miss when active edje hash is empty.
- * Fix the EVAS_CALLBACK_MOUSE_MOVE callback is called even if the grabbed object is invisible by proxy object.
+ * Fix the EVAS_CALLBACK_MOUSE_MOVE callback is called even if the grabbed object is invisible by proxy object.
eet_data_descriptor_free(Eet_Data_Descriptor *edd);
/**
+ * This function returns the name of a data descriptor.
+ *
+ * @since 1.8.0
+ * @ingroup Eet_Data_Group
+ */
+EAPI const char *eet_data_descriptor_name_get(const Eet_Data_Descriptor *edd);
+
+/**
* This function is an internal used by macros.
*
* This function is used by macros EET_DATA_DESCRIPTOR_ADD_BASIC(),
return _eet_data_descriptor_new(eddc, 2);
}
+EAPI const char *
+eet_data_descriptor_name_get(const Eet_Data_Descriptor *edd)
+{
+ EINA_SAFETY_ON_NULL_RETURN_VAL(edd, NULL);
+ return edd->name;
+}
+
+
EAPI void
eet_data_descriptor_free(Eet_Data_Descriptor *edd)
{