diff options
author | Daniel Kolesa <d.kolesa@osg.samsung.com> | 2015-04-20 15:06:01 +0100 |
---|---|---|
committer | Daniel Kolesa <d.kolesa@osg.samsung.com> | 2015-05-06 15:05:22 +0100 |
commit | 4d6f254885f53ed545f7cf9d0cd6b19e4d5bb234 (patch) | |
tree | 9fa25e04d3d3cac22003f30bd1fa96ddbaf1807d | |
parent | eab576db611e3f067f5c4e4659b61eefb7a52ced (diff) |
elua lib: add docs for the dir retrieval APIs.
-rw-r--r-- | src/lib/elua/Elua.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/lib/elua/Elua.h b/src/lib/elua/Elua.h index 7c478f8516..7f27ba8df8 100644 --- a/src/lib/elua/Elua.h +++ b/src/lib/elua/Elua.h | |||
@@ -223,8 +223,31 @@ EAPI void elua_state_dirs_set(Elua_State *es, const char *core, | |||
223 | */ | 223 | */ |
224 | EAPI void elua_state_dirs_fill(Elua_State *es, Eina_Bool ignore_env); | 224 | EAPI void elua_state_dirs_fill(Elua_State *es, Eina_Bool ignore_env); |
225 | 225 | ||
226 | /** | ||
227 | * @brief Retrieve the Elua core dir. | ||
228 | * | ||
229 | * @param[in] es The Elua state. | ||
230 | * | ||
231 | * @ingroup Elua | ||
232 | */ | ||
226 | EAPI Eina_Stringshare *elua_state_core_dir_get(const Elua_State *es); | 233 | EAPI Eina_Stringshare *elua_state_core_dir_get(const Elua_State *es); |
234 | |||
235 | /** | ||
236 | * @brief Retrieve the Elua module dir. | ||
237 | * | ||
238 | * @param[in] es The Elua state. | ||
239 | * | ||
240 | * @ingroup Elua | ||
241 | */ | ||
227 | EAPI Eina_Stringshare *elua_state_mod_dir_get(const Elua_State *es); | 242 | EAPI Eina_Stringshare *elua_state_mod_dir_get(const Elua_State *es); |
243 | |||
244 | /** | ||
245 | * @brief Retrieve the Elua apps dir. | ||
246 | * | ||
247 | * @param[in] es The Elua state. | ||
248 | * | ||
249 | * @ingroup Elua | ||
250 | */ | ||
228 | EAPI Eina_Stringshare *elua_state_apps_dir_get(const Elua_State *es); | 251 | EAPI Eina_Stringshare *elua_state_apps_dir_get(const Elua_State *es); |
229 | 252 | ||
230 | EAPI Eina_Stringshare *elua_state_prog_name_get(const Elua_State *es); | 253 | EAPI Eina_Stringshare *elua_state_prog_name_get(const Elua_State *es); |