From: Daniel Kolesa Date: Mon, 20 Apr 2015 13:49:10 +0000 (+0100) Subject: elua lib: add state_free doc X-Git-Tag: v1.15.0-alpha1~752^2~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=002dc5a6b97a742bce0035c9ed33919df06c2779;p=platform%2Fupstream%2Fefl.git elua lib: add state_free doc --- diff --git a/src/lib/elua/Elua.h b/src/lib/elua/Elua.h index e764750..84d243b 100644 --- a/src/lib/elua/Elua.h +++ b/src/lib/elua/Elua.h @@ -166,6 +166,16 @@ EAPI Elua_State *elua_state_new(const char *progname); */ EAPI Elua_State *elua_state_from_lua_state_get(lua_State *L); +/** + * @brief Destroy an Elua state. + * + * Given an Elua state, this destroys its internal Lua state as well as all + * other data its holding and then frees the Elua state itself. + * + * @param[in] es The Elua state. + * + * @ingroup Elua + */ EAPI void elua_state_free(Elua_State *es); EAPI void elua_state_dirs_set(Elua_State *es, const char *core,