From f592f8ce84e91d7777a7b0d210ad50a54ad09abf Mon Sep 17 00:00:00 2001 From: Sung-jae Park Date: Mon, 12 Nov 2012 16:57:47 +0900 Subject: [PATCH] Add missed declaration of event types. Change-Id: Ia9d37449bd31a40031402b15b8fd25ffa08d80e9 --- include/livebox.h | 2 ++ packaging/liblivebox.spec | 2 +- src/livebox.c | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/include/livebox.h b/include/livebox.h index f2a37ae..d1bba38 100644 --- a/include/livebox.h +++ b/include/livebox.h @@ -24,6 +24,7 @@ extern const int LB_SYS_EVENT_LANG_CHANGED; /*!< System language is changed */ * \brief * Extra event informatino for livebox_content_event interface function */ +#ifndef __PROVIDER_H struct event_info { struct { double x; @@ -38,6 +39,7 @@ struct event_info { double ey; } part; /*!< Geometry of event received part */ }; +#endif struct livebox_desc; diff --git a/packaging/liblivebox.spec b/packaging/liblivebox.spec index 32dfced..c3440f1 100644 --- a/packaging/liblivebox.spec +++ b/packaging/liblivebox.spec @@ -1,6 +1,6 @@ Name: liblivebox Summary: Library for the development of a livebox -Version: 0.1.1 +Version: 0.1.2 Release: 1 Group: main/app License: Samsung Proprietary License diff --git a/src/livebox.c b/src/livebox.c index 014a19b..db8d520 100644 --- a/src/livebox.c +++ b/src/livebox.c @@ -45,6 +45,8 @@ EAPI const int NEED_TO_SCHEDULE = 0x01; EAPI const int OUTPUT_UPDATED = 0x02; EAPI const int NEED_TO_CREATE = 0x01; EAPI const int NEED_TO_DESTROY = 0x01; +EAPI const int LB_SYS_EVENT_FONT_CHANGED = 0x01; +EAPI const int LB_SYS_EVENT_LANG_CHANGED = 0x02; EAPI struct livebox_desc *livebox_desc_open(const char *filename, int for_pd) { -- 2.7.4