Change-Id: Id126805e6204f4ef1e42f84ad4cc1cde05f1c172
* Exported API for each liveboxes
*/
extern const char *livebox_find_pkgname(const char *filename);
+extern int livebox_request_update_by_id(const char *filename);
/* End of a file */
Name: org.tizen.data-provider-slave
Summary: Slave data provider
-Version: 0.8.18
+Version: 0.8.19
Release: 1
Group: main/app
License: Flora License
return NULL;
}
+int livebox_request_update_by_id(const char *filename)
+{
+ Eina_List *l;
+ struct item *item;
+
+ EINA_LIST_FOREACH(s_info.item_list, l, item) {
+ if (!strcmp(item->inst->id, filename)) {
+ return append_pending_list(item);
+ }
+ }
+
+ return -ENOENT;
+}
+
HAPI int lb_open_pd(const char *pkgname)
{
Eina_List *l;