Add TIME_CHANGED event
authorSung-jae Park <nicesj.park@samsung.com>
Tue, 15 Jan 2013 05:17:58 +0000 (14:17 +0900)
committerSung-jae Park <nicesj.park@samsung.com>
Tue, 15 Jan 2013 05:17:58 +0000 (14:17 +0900)
Change-Id: Ifa9ca0d344236826ba1a8906778c86fe3ad237e7

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

index c17c222..3479af8 100644 (file)
@@ -35,6 +35,7 @@ extern const int NEED_TO_DESTROY; /*!< Need to destroy this instance */
 
 extern const int LB_SYS_EVENT_FONT_CHANGED; /*!< System font is changed */
 extern const int LB_SYS_EVENT_LANG_CHANGED; /*!< System language is changed */
+extern const int LB_SYS_EVENT_TIME_CHANGED; /*!< System time is changed */
 extern const int LB_SYS_EVENT_PAUSED;
 extern const int LB_SYS_EVENT_RESUMED;
 
index ec0db1c..01ddd60 100644 (file)
@@ -1,6 +1,6 @@
 Name: liblivebox
 Summary: Library for the development of a livebox 
-Version: 0.1.9
+Version: 0.1.10
 Release: 1
 Group: main/app
 License: Flora License
index 9fcf597..b2e6f4d 100644 (file)
@@ -68,8 +68,9 @@ 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 const int LB_SYS_EVENT_PAUSED = 0x04;
-EAPI const int LB_SYS_EVENT_RESUMED = 0x08;
+EAPI const int LB_SYS_EVENT_TIME_CHANGED = 0x04;
+EAPI const int LB_SYS_EVENT_PAUSED = 0x0100;
+EAPI const int LB_SYS_EVENT_RESUMED = 0x0200;
 
 EAPI struct livebox_desc *livebox_desc_open(const char *filename, int for_pd)
 {