summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xinclude/bundle_internal.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/bundle_internal.h b/include/bundle_internal.h
index cb4e7de..e94db58 100755
--- a/include/bundle_internal.h
+++ b/include/bundle_internal.h
@@ -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