summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMyungki Lee <mk5004.lee@samsung.com>2016-10-21 10:36:36 +0900
committerMyungki Lee <mk5004.lee@samsung.com>2016-10-21 10:36:36 +0900
commit4d5815eb638d01653ffb257edfba8994a637c935 (patch)
tree6abc9a866fcda8bca350c214550bf85daef0e770 /lib
parentd559302f15907c97f30d539cb608da567e92443f (diff)
downloadshortcut-4d5815eb638d01653ffb257edfba8994a637c935.tar.gz
shortcut-4d5815eb638d01653ffb257edfba8994a637c935.tar.bz2
shortcut-4d5815eb638d01653ffb257edfba8994a637c935.zip
Change-Id: I7a9060eb8b3e812e804d472fd9073515af3ab98a Signed-off-by: Myungki Lee <mk5004.lee@samsung.com>
Diffstat (limited to 'lib')
-rwxr-xr-xlib/include/shortcut_manager.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/include/shortcut_manager.h b/lib/include/shortcut_manager.h
index fe44516..2ff256d 100755
--- a/lib/include/shortcut_manager.h
+++ b/lib/include/shortcut_manager.h
@@ -154,7 +154,7 @@ typedef int (*result_cb_t)(int ret, void *data);
*
* @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.
@@ -225,7 +225,7 @@ extern int shortcut_add_to_home(const char *name, shortcut_type type, const char
*
* @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.
*
*/
-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.
@@ -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
*/
-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);
/**