Add description for callback function 56/203956/2
authorSukHyung, Kang <shine.kang@samsung.com>
Thu, 18 Apr 2019 08:12:44 +0000 (17:12 +0900)
committerSukHyung, Kang <shine.kang@samsung.com>
Thu, 18 Apr 2019 08:47:21 +0000 (17:47 +0900)
Change-Id: I701a502635160160b73fc977b948f71bf4062c6c
Signed-off-by: SukHyung, Kang <shine.kang@samsung.com>
include/bundle.h

index 275cbf3..ce1e1ff 100755 (executable)
@@ -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);
 
 
 /**