summaryrefslogtreecommitdiff
path: root/include/liveinfo.h
diff options
context:
space:
mode:
authorSung-jae Park <nicesj.park@samsung.com>2013-03-25 03:22:23 +0000
committerSung-jae Park <nicesj.park@samsung.com>2013-03-25 05:33:11 +0000
commite82f1e99f2a6ff34b99b6299d6796bb7afec236e (patch)
treedb9bcc646f922a3e8ce9642ed4737b5a13426cdb /include/liveinfo.h
parent4eede113840f02acf473bfd39c443aea0f8ea4d2 (diff)
downloaddata-provider-master-e82f1e99f2a6ff34b99b6299d6796bb7afec236e.tar.gz
data-provider-master-e82f1e99f2a6ff34b99b6299d6796bb7afec236e.tar.bz2
data-provider-master-e82f1e99f2a6ff34b99b6299d6796bb7afec236e.zip
Update License
2012 -> 2013 Fix the bug of resized box event. After the provider get the resized event from the box, need to check the current size of a box. If is same with requested size, send it to the client that the request is already finished. Apply the livebox errno (status code) instead of system errno. Make easy to understand what happens in the API. Use the util_uri_to_path to unlink image files of liveboxes(image type) Change-Id: Ide9281da21700f4e1d9c0eb480daeff891258ccd
Diffstat (limited to 'include/liveinfo.h')
-rw-r--r--include/liveinfo.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/liveinfo.h b/include/liveinfo.h
index 592a8ee..0b3eeae 100644
--- a/include/liveinfo.h
+++ b/include/liveinfo.h
@@ -1,5 +1,5 @@
/*
- * Copyright 2012 Samsung Electronics Co., Ltd
+ * Copyright 2013 Samsung Electronics Co., Ltd
*
* Licensed under the Flora License, Version 1.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -17,9 +17,9 @@
struct liveinfo;
extern int liveinfo_init(void);
-extern int liveinfo_fini(void);
+extern void liveinfo_fini(void);
extern struct liveinfo *liveinfo_create(pid_t pid, int handle);
-extern int liveinfo_destroy(struct liveinfo *info);
+extern void liveinfo_destroy(struct liveinfo *info);
extern struct liveinfo *liveinfo_find_by_pid(pid_t pid);
extern struct liveinfo *liveinfo_find_by_handle(int handle);
@@ -28,6 +28,6 @@ extern const char *liveinfo_filename(struct liveinfo *info);
extern pid_t liveinfo_pid(struct liveinfo *info);
extern FILE *liveinfo_fifo(struct liveinfo *info);
extern int liveinfo_open_fifo(struct liveinfo *info);
-extern int liveinfo_close_fifo(struct liveinfo *info);
+extern void liveinfo_close_fifo(struct liveinfo *info);
/* End of a file */