summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunghoon Park <jh9216.park@samsung.com>2016-07-27 12:57:39 +0900
committerJunghoon Park <jh9216.park@samsung.com>2016-07-27 12:57:39 +0900
commitba3d2dfcffab1ff4397b236b8ec121f88d394bfa (patch)
tree130eaae2bd7d14fc76ed965a2a14e0066fda636b
parent9a814e550e146d6f020adf1ba7a4a18241543fe8 (diff)
downloadapplication-ba3d2dfcffab1ff4397b236b8ec121f88d394bfa.tar.gz
application-ba3d2dfcffab1ff4397b236b8ec121f88d394bfa.tar.bz2
application-ba3d2dfcffab1ff4397b236b8ec121f88d394bfa.zip
Add description for APP_CONTROL_DATA_SELECTED
Change-Id: If0a924204a329c9917d437a6b48a6536bb208d6b Signed-off-by: Junghoon Park <jh9216.park@samsung.com>
-rw-r--r--include/app_control.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/app_control.h b/include/app_control.h
index 48fd39f..0ce6743 100644
--- a/include/app_control.h
+++ b/include/app_control.h
@@ -383,6 +383,7 @@ typedef enum {
/**
* @brief Definition for app_control data: Selected items
* @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @remarks Since Tizen 3.0, if all added paths with this key are under the caller application's data path which can be obtained by calling app_get_data_path() function, those will be shared to the callee application. Framework will grant a temporary permission to the callee application for those files and revoke it when the callee application is terminated. Paths should be regular files. The callee application can just read them. Note that the callee application doesn't have read permission of the directory that is obtained by caller's app_get_data_path(), you should open the file path with read only mode directly. For example, access() call to the file path will return error because access() needs the read permission of the directory. The callee application can call open() with O_RDONLY mode for the passed file path, because framework grants read permission to the passed file path.
*/
#define APP_CONTROL_DATA_SELECTED "http://tizen.org/appcontrol/data/selected"