summaryrefslogtreecommitdiff
path: root/src/ug.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ug.c')
-rw-r--r--src/ug.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ug.c b/src/ug.c
index 47c70d1..912f9f8 100644
--- a/src/ug.c
+++ b/src/ug.c
@@ -109,6 +109,8 @@ UG_API int ug_init(void *disp, unsigned long xid, void *win, enum ug_option opt)
return ugman_init((Display *)disp, (Window)xid, win, opt);
}
#else
+
+/* LCOV_EXCL_START */
UG_API int ug_init(void *disp, unsigned long xid, void *win, enum ug_option opt)
{
if (opt < UG_OPT_INDICATOR_ENABLE || opt >= UG_OPT_MAX) {
@@ -118,12 +120,15 @@ UG_API int ug_init(void *disp, unsigned long xid, void *win, enum ug_option opt)
return ugman_init(win, opt);
}
+/* LCOV_EXCL_STOP */
#endif
+/* LCOV_EXCL_START */
UG_API int UG_INIT_EFL(void *win, enum ug_option opt)
{
return ug_init_efl((Evas_Object *)win, opt);
}
+/* LCOV_EXCL_STOP */
UG_API int ug_init_efl(Evas_Object *win, enum ug_option opt)
{