summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/engine.c2
-rw-r--r--src/ug.c5
2 files changed, 7 insertions, 0 deletions
diff --git a/src/engine.c b/src/engine.c
index b9ec8a0..bf9e32a 100644
--- a/src/engine.c
+++ b/src/engine.c
@@ -77,6 +77,7 @@ engine_free:
return NULL;
}
+/* LCOV_EXCL_START */
int ug_engine_unload(struct ug_engine *engine)
{
void (*engine_exit)(struct ug_engine_ops *ops);
@@ -100,3 +101,4 @@ int ug_engine_unload(struct ug_engine *engine)
engine = NULL;
return 0;
}
+/* LCOV_EXCL_STOP */
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)
{