From a54fa7abb9c0450bd2d6567f139cfd006f50e1b4 Mon Sep 17 00:00:00 2001 From: Daniel Kolesa Date: Mon, 20 Apr 2015 16:08:36 +0100 Subject: [PATCH] elua lib: add docs for elua_state_prog_name_get --- src/lib/elua/Elua.h | 11 +++++++++++ 1 file changed, 11 insertions(+) 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); * @brief Retrieve the Elua core dir. * * @param[in] es The Elua state. + * @return The path. * * @ingroup Elua */ @@ -236,6 +237,7 @@ EAPI Eina_Stringshare *elua_state_core_dir_get(const Elua_State *es); * @brief Retrieve the Elua module dir. * * @param[in] es The Elua state. + * @return The path. * * @ingroup Elua */ @@ -245,11 +247,20 @@ EAPI Eina_Stringshare *elua_state_mod_dir_get(const Elua_State *es); * @brief Retrieve the Elua apps dir. * * @param[in] es The Elua state. + * @return The path. * * @ingroup Elua */ EAPI Eina_Stringshare *elua_state_apps_dir_get(const Elua_State *es); +/** + * @brief Retrieve the prog name set on state creation. + * + * @param[in] es The Elua state. + * @return The name. + * + * @ingroup Elua + */ EAPI Eina_Stringshare *elua_state_prog_name_get(const Elua_State *es); EAPI void elua_state_include_path_add(Elua_State *es, const char *path);