diff options
author | Daniel Kolesa <d.kolesa@osg.samsung.com> | 2015-04-20 16:08:36 +0100 |
---|---|---|
committer | Daniel Kolesa <d.kolesa@osg.samsung.com> | 2015-05-06 15:05:22 +0100 |
commit | a54fa7abb9c0450bd2d6567f139cfd006f50e1b4 (patch) | |
tree | 352d143d70c1271c804c720c0cfcfec6f4b268f5 | |
parent | 4d6f254885f53ed545f7cf9d0cd6b19e4d5bb234 (diff) |
elua lib: add docs for elua_state_prog_name_get
-rw-r--r-- | src/lib/elua/Elua.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/lib/elua/Elua.h b/src/lib/elua/Elua.h index 7f27ba8df8..c2a9d12bb6 100644 --- a/src/lib/elua/Elua.h +++ b/src/lib/elua/Elua.h | |||
@@ -227,6 +227,7 @@ EAPI void elua_state_dirs_fill(Elua_State *es, Eina_Bool ignore_env); | |||
227 | * @brief Retrieve the Elua core dir. | 227 | * @brief Retrieve the Elua core dir. |
228 | * | 228 | * |
229 | * @param[in] es The Elua state. | 229 | * @param[in] es The Elua state. |
230 | * @return The path. | ||
230 | * | 231 | * |
231 | * @ingroup Elua | 232 | * @ingroup Elua |
232 | */ | 233 | */ |
@@ -236,6 +237,7 @@ EAPI Eina_Stringshare *elua_state_core_dir_get(const Elua_State *es); | |||
236 | * @brief Retrieve the Elua module dir. | 237 | * @brief Retrieve the Elua module dir. |
237 | * | 238 | * |
238 | * @param[in] es The Elua state. | 239 | * @param[in] es The Elua state. |
240 | * @return The path. | ||
239 | * | 241 | * |
240 | * @ingroup Elua | 242 | * @ingroup Elua |
241 | */ | 243 | */ |
@@ -245,11 +247,20 @@ EAPI Eina_Stringshare *elua_state_mod_dir_get(const Elua_State *es); | |||
245 | * @brief Retrieve the Elua apps dir. | 247 | * @brief Retrieve the Elua apps dir. |
246 | * | 248 | * |
247 | * @param[in] es The Elua state. | 249 | * @param[in] es The Elua state. |
250 | * @return The path. | ||
248 | * | 251 | * |
249 | * @ingroup Elua | 252 | * @ingroup Elua |
250 | */ | 253 | */ |
251 | EAPI Eina_Stringshare *elua_state_apps_dir_get(const Elua_State *es); | 254 | EAPI Eina_Stringshare *elua_state_apps_dir_get(const Elua_State *es); |
252 | 255 | ||
256 | /** | ||
257 | * @brief Retrieve the prog name set on state creation. | ||
258 | * | ||
259 | * @param[in] es The Elua state. | ||
260 | * @return The name. | ||
261 | * | ||
262 | * @ingroup Elua | ||
263 | */ | ||
253 | EAPI Eina_Stringshare *elua_state_prog_name_get(const Elua_State *es); | 264 | EAPI Eina_Stringshare *elua_state_prog_name_get(const Elua_State *es); |
254 | 265 | ||
255 | EAPI void elua_state_include_path_add(Elua_State *es, const char *path); | 266 | EAPI void elua_state_include_path_add(Elua_State *es, const char *path); |