Modify overlapping function declaration 57/77157/1 accepted/tizen/common/20160703.130010 accepted/tizen/ivi/20160629.070843 accepted/tizen/mobile/20160629.071006 accepted/tizen/tv/20160629.070736 accepted/tizen/wearable/20160629.070823 submit/tizen/20160629.021322 submit/tizen_common/20160701.180000
authorseungha.son <seungha.son@samsung.com>
Wed, 29 Jun 2016 01:54:23 +0000 (10:54 +0900)
committerseungha.son <seungha.son@samsung.com>
Wed, 29 Jun 2016 02:08:57 +0000 (11:08 +0900)
Signed-off-by: seungha.son <seungha.son@samsung.com>
Change-Id: I0ad17988c4ffe748965616fe84f2e7d2547034ef

include/badge_internal.h
include/badge_setting.h
src/badge_setting.c

index a59de60..ad4b00b 100755 (executable)
@@ -204,26 +204,6 @@ void badge_changed_cb_call(unsigned int action, const char *pkgname,
  */
 int badge_create(const char *pkgname, const char *writable_pkg);
 
-/**
- * @brief This function sets badge property for designated package.
- * @param[in] pkgname The name of designated package
- * @param[in] property name
- * @param[in] property value
- * @return #BADGE_ERROR_NONE if success, other value if failure
- * @see #badge_error_e
- */
-int badge_setting_property_set(const char *pkgname, const char *property, const char *value);
-
-/**
- * @brief This function gets badge property for designated package.
- * @param[in] pkgname The name of designated package
- * @param[in] property name
- * @param[in] pointer which can save the getting value
- * @return #BADGE_ERROR_NONE if success, other value if failure
- * @see #badge_error_e
- */
-int badge_setting_property_get(const char *pkgname, const char *property, char **value);
-
 #ifdef __cplusplus
 }
 #endif /* __cplusplus */
index 3c1a4e6..7a037ed 100755 (executable)
 extern "C" {
 #endif
 
-badge_error_e badge_setting_property_set(const char *pkgname, const char *property, const char *value);
-badge_error_e badge_setting_property_get(const char *pkgname, const char *property, char **value);
+/**
+ * @brief This function sets badge property for designated package.
+ * @param[in] pkgname The name of designated package
+ * @param[in] property name
+ * @param[in] property value
+ * @return #BADGE_ERROR_NONE if success, other value if failure
+ * @see #badge_error_e
+ */
+int badge_setting_property_set(const char *pkgname, const char *property, const char *value);
+
+/**
+ * @brief This function gets badge property for designated package.
+ * @param[in] pkgname The name of designated package
+ * @param[in] property name
+ * @param[in] pointer which can save the getting value
+ * @return #BADGE_ERROR_NONE if success, other value if failure
+ * @see #badge_error_e
+ */
+int badge_setting_property_get(const char *pkgname, const char *property, char **value);
+
 
 #ifdef __cplusplus
 }
index 2e9de36..992c9fa 100755 (executable)
@@ -32,6 +32,7 @@
 #include "badge_internal.h"
 #include "badge_ipc.h"
 #include "badge_db.h"
+#include "badge_setting.h"
 
 #define SETTING_DB_TABLE "notification_setting"
 #define SETTING_DB_FILE tzplatform_mkpath(TZ_SYS_DB, "/.notification_parser.db")