summaryrefslogtreecommitdiff
path: root/include/ug-module.h
diff options
context:
space:
mode:
authorHyungdeuk Kim <hd3.kim@samsung.com>2013-04-09 15:05:51 +0900
committerHyungdeuk Kim <hd3.kim@samsung.com>2013-04-09 15:05:51 +0900
commit799d227d19ac183c6d6a44f2ec131ae46695c056 (patch)
tree34d54c2688b464745485941a82184cdf6d03beab /include/ug-module.h
parent231c143ff59f6785db0f972f6f9e29512514b435 (diff)
downloadui-gadget-1-799d227d19ac183c6d6a44f2ec131ae46695c056.tar.gz
ui-gadget-1-799d227d19ac183c6d6a44f2ec131ae46695c056.tar.bz2
ui-gadget-1-799d227d19ac183c6d6a44f2ec131ae46695c056.zip
apply latest changes
Diffstat (limited to 'include/ug-module.h')
-rw-r--r--include/ug-module.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/ug-module.h b/include/ug-module.h
index a6fc459..7d7bf5e 100644
--- a/include/ug-module.h
+++ b/include/ug-module.h
@@ -26,11 +26,12 @@
struct ug_module {
void *handle;
- const char *module_name;
+ char *module_name;
struct ug_module_ops ops;
};
struct ug_module *ug_module_load(const char *name);
int ug_module_unload(struct ug_module *module);
+int ug_exist(const char* name);
#endif /* __UG_MODULE_H__ */