Add missed declaration of event types.
authorSung-jae Park <nicesj.park@samsung.com>
Mon, 12 Nov 2012 07:57:47 +0000 (16:57 +0900)
committerSung-jae Park <nicesj.park@samsung.com>
Mon, 12 Nov 2012 09:44:05 +0000 (18:44 +0900)
Change-Id: Ia9d37449bd31a40031402b15b8fd25ffa08d80e9

include/livebox.h
packaging/liblivebox.spec
src/livebox.c

index f2a37ae..d1bba38 100644 (file)
@@ -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;
 
index 32dfced..c3440f1 100644 (file)
@@ -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
index 014a19b..db8d520 100644 (file)
@@ -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)
 {