summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <stefan@osg.samsung.com>2016-01-06 16:31:55 +0100
committerStefan Schmidt <stefan@osg.samsung.com>2016-01-06 16:31:55 +0100
commit9154fbb0e0167d7a004892bc83a5bebb687284e0 (patch)
tree5f9f9dc9826c29a3c13049a84962e845d7db38b6
parent92bab5115aef6ca4859c75c581e5c65de6499683 (diff)
downloadefl-9154fbb0e0167d7a004892bc83a5bebb687284e0.tar.gz
eldbus: add missing since tags for all new symbols
-rw-r--r--src/lib/eldbus/eldbus_freedesktop.h2
-rw-r--r--src/lib/eldbus/eldbus_introspection.h10
2 files changed, 12 insertions, 0 deletions
diff --git a/src/lib/eldbus/eldbus_freedesktop.h b/src/lib/eldbus/eldbus_freedesktop.h
index 838fee0777..accf6053db 100644
--- a/src/lib/eldbus/eldbus_freedesktop.h
+++ b/src/lib/eldbus/eldbus_freedesktop.h
@@ -249,6 +249,8 @@ EAPI Eldbus_Pending *eldbus_proxy_property_set(Eldbus_Proxy *proxy, const
* @param cb The callback to be called when receiving an answer.
* @param data Data to be passed to the callback.
* @return Eldbus_Pending object corresponding to the message sent.
+ *
+ * @since 1.17
*/
EAPI Eldbus_Pending *eldbus_proxy_property_value_set(Eldbus_Proxy *proxy, const char *name, const char *sig, const Eina_Value *value, Eldbus_Message_Cb cb, const void *data) EINA_ARG_NONNULL(1, 2, 3, 4);
diff --git a/src/lib/eldbus/eldbus_introspection.h b/src/lib/eldbus/eldbus_introspection.h
index 4f3746016c..bb6078a1ff 100644
--- a/src/lib/eldbus/eldbus_introspection.h
+++ b/src/lib/eldbus/eldbus_introspection.h
@@ -84,6 +84,8 @@ struct _Eldbus_Introspection_Annotation
*
* @param xml The introspection xml
* @return The introspection object tree
+ *
+ * @since 1.17
*/
EAPI Eldbus_Introspection_Node *eldbus_introspection_parse(const char *xml);
@@ -91,6 +93,8 @@ EAPI Eldbus_Introspection_Node *eldbus_introspection_parse(const char *xml);
* @brief Frees the introspection object tree
*
* @param node The root node of introspection tree
+ *
+ * @since 1.17
*/
EAPI void eldbus_introspection_node_free(Eldbus_Introspection_Node *node);
@@ -100,6 +104,8 @@ EAPI void eldbus_introspection_node_free(Eldbus_Introspection_Node *node);
* @param interfaces The list of interfaces of type @c Eldbus_Introspection_Interface
* @param name The interfaces's name to search for
* @return Returns the interface found or @c NULL if not
+ *
+ * @since 1.17
*/
EAPI Eldbus_Introspection_Interface *eldbus_introspection_interface_find(Eina_List *interfaces, const char *name);
@@ -109,6 +115,8 @@ EAPI Eldbus_Introspection_Interface *eldbus_introspection_interface_find(Eina_Li
* @param properties The list of properties of type @c Eldbus_Introspection_Property
* @param name The properties's name to search for
* @return Returns the property found or @c NULL if not
+ *
+ * @since 1.17
*/
EAPI Eldbus_Introspection_Property *eldbus_introspection_property_find(Eina_List *properties, const char *name);
@@ -118,6 +126,8 @@ EAPI Eldbus_Introspection_Property *eldbus_introspection_property_find(Eina_List
* @param arguments The list of arguments of type @c Eldbus_Introspection_Property
* @param name The arguments's name to search for
* @return Returns the argument found or @c NULL if not
+ *
+ * @since 1.17
*/
EAPI Eldbus_Introspection_Argument *eldbus_introspection_argument_find(Eina_List *arguments, const char *name);