summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHyungdeuk Kim <hd3.kim@samsung.com>2013-04-12 10:24:20 +0900
committerHyungdeuk Kim <hd3.kim@samsung.com>2013-04-12 10:24:20 +0900
commit46b82c6d162cea4d5560c82ae117b6a49b217bf8 (patch)
treef52f75280c1f395e5a439a3e14e4ad056aece973 /src
parent799d227d19ac183c6d6a44f2ec131ae46695c056 (diff)
downloadui-gadget-1-46b82c6d162cea4d5560c82ae117b6a49b217bf8.tar.gz
ui-gadget-1-46b82c6d162cea4d5560c82ae117b6a49b217bf8.tar.bz2
ui-gadget-1-46b82c6d162cea4d5560c82ae117b6a49b217bf8.zip
remve window profile changed cb for desktop mode
Diffstat (limited to 'src')
-rwxr-xr-xsrc/ug.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ug.c b/src/ug.c
index aac737b..579d8fc 100755
--- a/src/ug.c
+++ b/src/ug.c
@@ -281,3 +281,13 @@ UG_API int ug_disable_effect(ui_gadget_h ug)
return 0;
}
+
+UG_API int ug_is_installed(const char *name)
+{
+ if(name == NULL){
+ _ERR("name is null");
+ return -1;
+ }
+
+ return ug_exist(name);
+}