add aul_get_app_tep_resource_path api. 47/45147/2 accepted/tizen/mobile/20150803.094055 accepted/tizen/tv/20150803.094110 accepted/tizen/wearable/20150803.094120 submit/tizen/20150803.051904
authorJiwoong Im <jiwoong.im@samsung.com>
Mon, 3 Aug 2015 05:09:52 +0000 (14:09 +0900)
committerJiwoong Im <jiwoong.im@samsung.com>
Mon, 3 Aug 2015 05:17:10 +0000 (22:17 -0700)
Change-Id: Icefba6613467f8b8e0a6146c8e999f298bac52b3
Signed-off-by: Jiwoong Im <jiwoong.im@samsung.com>
include/aul.h
src/aul_path.c

index 7b1cab2..3df76bd 100644 (file)
@@ -1629,6 +1629,7 @@ const char *aul_get_app_root_path(void);
 const char *aul_get_app_data_path(void);
 const char *aul_get_app_cache_path(void);
 const char *aul_get_app_resource_path(void);
+const char *aul_get_app_tep_resource_path(void);
 const char *aul_get_app_shared_data_path(void);
 const char *aul_get_app_shared_resource_path(void);
 const char *aul_get_app_shared_trusted_path(void);
index f9f326f..064e6c1 100755 (executable)
@@ -38,6 +38,7 @@
 static const char _DATA_DIR[] = "data/";
 static const char _CACHE_DIR[] = "cache/";
 static const char _RESOURCE_DIR[] = "res/";
+static const char _TEP_RESOURCE_DIR[] = "res/tep/";
 static const char _SHARED_DATA_DIR[] = "shared/data/";
 static const char _SHARED_TRUSTED_DIR[] = "shared/trusted/";
 static const char _SHARED_RESOURCE_DIR[] = "shared/res/";
@@ -204,6 +205,13 @@ SLPAPI const char *aul_get_app_resource_path(void)
        return __get(&path, NULL, _RESOURCE_DIR, getuid(), __get_path);
 }
 
+SLPAPI const char *aul_get_app_tep_resource_path(void)
+{
+       static char *path;
+
+       return __get(&path, NULL, _TEP_RESOURCE_DIR, getuid(), __get_path);
+}
+
 SLPAPI const char *aul_get_app_shared_data_path(void)
 {
        static char *path;