export efl_future_then() for Eina_Future syntax sugar.

This is actually written as efl_future_Eina_FutureXXX_then() as the
old API clashes, after removing the old code we'll "sed" to fix those.
This commit is contained in:
Gustavo Sverzut Barbieri 2017-08-26 19:39:23 -03:00
parent 7dc41ab0e5
commit f3d5642503
1 changed files with 12 additions and 0 deletions

View File

@ -535,9 +535,21 @@ EOAPI Eina_Future_Desc efl_future_cb_from_desc(Eo *obj, const Efl_Future_Cb_Desc
* @endcode
*
* @see efl_future_cb_from_desc()
* @see efl_future_Eina_FutureXXX_then()
*/
#define efl_future_cb(_eo, ...) efl_future_cb_from_desc(_eo, (Efl_Future_Cb_Desc){__VA_ARGS__})
/**
* Syntax sugar over eina_future_then_from_desc() and efl_future_cb().
*
* Usage:
* @code
* efl_future_Eina_FutureXXX_then(o, future, .success = success, .success_type = EINA_VALUE_TYPE_INT);
* @endcode
*
*/
#define efl_future_Eina_FutureXXX_then(_eo, _future, ...) eina_future_then_from_desc(_future, efl_future_cb(_eo, ## __VA_ARGS__))
/**
* Creates an Future chain based on #Efl_Future_Cb_Desc
*