Add bundle_compare() in internal.h 00/94200/2 accepted/tizen/3.0/common/20161114.081613 accepted/tizen/3.0/ivi/20161102.075729 accepted/tizen/3.0/mobile/20161102.075522 accepted/tizen/3.0/tv/20161102.075627 accepted/tizen/3.0/wearable/20161102.075659 accepted/tizen/common/20161102.121423 accepted/tizen/ivi/20161101.123008 accepted/tizen/mobile/20161101.122900 accepted/tizen/tv/20161101.122929 accepted/tizen/wearable/20161101.122952 submit/tizen/20161101.004208 submit/tizen_3.0/20161102.051512 submit/tizen_3.0_common/20161110.084657
authorMyungki Lee <mk5004.lee@samsung.com>
Thu, 27 Oct 2016 11:30:55 +0000 (20:30 +0900)
committerMyungki Lee <mk5004.lee@samsung.com>
Thu, 27 Oct 2016 11:30:55 +0000 (20:30 +0900)
Change-Id: I1c4f50c32375f80c6d709992488367331eb58163
Signed-off-by: Myungki Lee <mk5004.lee@samsung.com>
include/bundle_internal.h

index cb4e7de..e94db58 100755 (executable)
@@ -484,6 +484,18 @@ API int bundle_to_json(bundle *b, char **json);
  */
 API int bundle_from_json(const char *json, bundle **b);
 
+/**
+ * @breif Compares the bundle 1, 2.
+ * @since_tizen 3.0
+ * @param[in]b1 The bundle object
+ * @param[in]b2 The bundle object
+ * @return     The operation result
+ * @retval @c 0 It is identical
+ * @retval @c -1 Invalid parameter
+ * @retval @c 1 It is not identical
+ */
+API int bundle_compare(bundle *b1, bundle *b2);
+
 #ifdef __cplusplus
 }
 #endif