summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xinclude/bundle.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/bundle.h b/include/bundle.h
index 275cbf3..ce1e1ff 100755
--- a/include/bundle.h
+++ b/include/bundle.h
@@ -104,9 +104,13 @@ typedef struct keyval_t bundle_keyval_t;
/**
* @brief Called for every key-value pair.
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @param[in] key The key of key-value pair
+ * @param[in] type The type of bundle
+ * @param[in] kv The handle of key-value pair
+ * @param[in] user_data The user data
* @see bundle_foreach()
*/
-typedef void (*bundle_iterator_t) (const char *key, const int type, const bundle_keyval_t *kv, void *user_data );
+typedef void (*bundle_iterator_t) (const char *key, const int type, const bundle_keyval_t *kv, void *user_data);
/**