Remove extern keyword 51/93151/3 accepted/tizen/3.0/ivi/20161102.075737 accepted/tizen/3.0/mobile/20161102.075548 accepted/tizen/3.0/tv/20161102.075635 accepted/tizen/3.0/wearable/20161102.075707 accepted/tizen/common/20161031.121704 accepted/tizen/ivi/20161031.082318 accepted/tizen/mobile/20161031.082212 accepted/tizen/tv/20161031.082238 accepted/tizen/wearable/20161031.082258 submit/tizen/20161031.010650 submit/tizen_3.0/20161102.051512
authorMyungki Lee <mk5004.lee@samsung.com>
Fri, 21 Oct 2016 01:36:36 +0000 (10:36 +0900)
committerMyungki Lee <mk5004.lee@samsung.com>
Fri, 21 Oct 2016 01:36:36 +0000 (10:36 +0900)
Change-Id: I7a9060eb8b3e812e804d472fd9073515af3ab98a
Signed-off-by: Myungki Lee <mk5004.lee@samsung.com>
lib/include/shortcut_manager.h

index fe44516..2ff256d 100755 (executable)
@@ -154,7 +154,7 @@ typedef int (*result_cb_t)(int ret, void *data);
  *
  * @endcode
  */
  *
  * @endcode
  */
-extern int shortcut_add_to_home(const char *name, shortcut_type type, const char *uri, const char *icon, int allow_duplicate, result_cb_t result_cb, void *data);
+int shortcut_add_to_home(const char *name, shortcut_type type, const char *uri, const char *icon, int allow_duplicate, result_cb_t result_cb, void *data);
 
 /**
  * @brief Adds a widget to home, asynchronously.
 
 /**
  * @brief Adds a widget to home, asynchronously.
@@ -225,7 +225,7 @@ extern int shortcut_add_to_home(const char *name, shortcut_type type, const char
  *
  * @endcode
  */
  *
  * @endcode
  */
-extern int shortcut_add_to_home_widget(const char *name, shortcut_widget_size_e size, const char *widget_id, const char *icon, double period, int allow_duplicate, result_cb_t result_cb, void *data);
+int shortcut_add_to_home_widget(const char *name, shortcut_widget_size_e size, const char *widget_id, const char *icon, double period, int allow_duplicate, result_cb_t result_cb, void *data);
 
 
 /**
 
 
 /**
@@ -268,7 +268,7 @@ typedef int (*shortcut_list_cb)(const char *package_name, const char *icon, cons
  * @post You have to check the return status from the callback function which is passed by the argument.
  *
  */
  * @post You have to check the return status from the callback function which is passed by the argument.
  *
  */
-extern int shortcut_get_list(const char *package_name, shortcut_list_cb list_cb, void *data);
+int shortcut_get_list(const char *package_name, shortcut_list_cb list_cb, void *data);
 
 /**
  * @brief Called to the add_to_home request.
 
 /**
  * @brief Called to the add_to_home request.
@@ -317,7 +317,7 @@ typedef int (*shortcut_request_cb)(const char *package_name, const char *name, i
  * @see request_cb_t
  * @see shortcut_error_e
  */
  * @see request_cb_t
  * @see shortcut_error_e
  */
-extern int shortcut_set_request_cb(shortcut_request_cb request_cb, void *data);
+int shortcut_set_request_cb(shortcut_request_cb request_cb, void *data);
 
 
 /**
 
 
 /**