summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSukHyung, Kang <shine.kang@samsung.com>2019-04-18 17:12:44 +0900
committerSukHyung, Kang <shine.kang@samsung.com>2019-04-18 17:47:21 +0900
commit1bc3a940d89e9ff62304e1bf9e8eaee8a791770d (patch)
tree4868f481c77022b6a8019411644fad31e8bce930
parenta31d696e0f547c82f38e8e46a3769bf92b2ba91f (diff)
downloadbundle-1bc3a940d89e9ff62304e1bf9e8eaee8a791770d.tar.gz
bundle-1bc3a940d89e9ff62304e1bf9e8eaee8a791770d.tar.bz2
bundle-1bc3a940d89e9ff62304e1bf9e8eaee8a791770d.zip
Add description for callback function
Change-Id: I701a502635160160b73fc977b948f71bf4062c6c Signed-off-by: SukHyung, Kang <shine.kang@samsung.com>
-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);
/**