Add MMC status changed event type
authorSung-jae Park <nicesj.park@samsung.com>
Thu, 18 Apr 2013 05:00:01 +0000 (14:00 +0900)
committerSung-jae Park <nicesj.park@samsung.com>
Thu, 18 Apr 2013 05:00:23 +0000 (14:00 +0900)
Some boxes need to know the status of MMC mount.

Change-Id: Ia211e22c352ec77e84d81f42296433c5f617db32

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

index 863df72..7071d74 100644 (file)
@@ -45,6 +45,7 @@ extern const int LB_SYS_EVENT_TIME_CHANGED; /*!< System time is changed */
 extern const int LB_SYS_EVENT_REGION_CHANGED; /*!< Region changed */
 extern const int LB_SYS_EVENT_PAUSED;
 extern const int LB_SYS_EVENT_RESUMED;
+extern const int LB_SYS_EVENT_MMC_STATUS_CHANGED; /*!< MMC Status change event */
 
 #define LB_DESC_TYPE_COLOR "color"
 #define LB_DESC_TYPE_TEXT "text"
index 47d0ef4..612148c 100644 (file)
@@ -1,6 +1,6 @@
 Name: liblivebox
 Summary: Library for the development of a livebox 
-Version: 0.2.1
+Version: 0.2.2
 Release: 1
 Group: HomeTF/Livebox
 License: Flora License
index 339e59c..8bc10df 100644 (file)
@@ -83,6 +83,7 @@ PUBLIC const int LB_SYS_EVENT_TIME_CHANGED = 0x04;
 PUBLIC const int LB_SYS_EVENT_REGION_CHANGED = 0x08;
 PUBLIC const int LB_SYS_EVENT_PAUSED = 0x0100;
 PUBLIC const int LB_SYS_EVENT_RESUMED = 0x0200;
+PUBLIC const int LB_SYS_EVENT_MMC_STATUS_CHANGED = 0x0400;
 
 PUBLIC struct livebox_desc *livebox_desc_open(const char *filename, int for_pd)
 {