From: Jean-Philippe Andre Date: Tue, 19 Dec 2017 01:18:43 +0000 (+0900) Subject: eina: Add missing eina_internal.h X-Git-Tag: submit/sandbox/upgrade/efl120/20180319.053334~588 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b089bbdadbcd580fe89db206a70b565a73e2e7f5;p=platform%2Fupstream%2Fefl.git eina: Add missing eina_internal.h --- diff --git a/src/Makefile_Eina.am b/src/Makefile_Eina.am index bd74cdc..186bd1e 100644 --- a/src/Makefile_Eina.am +++ b/src/Makefile_Eina.am @@ -391,6 +391,7 @@ EXTRA_DIST2 += \ lib/eina/eina_strbuf_template_c.x \ lib/eina/eina_binbuf_template_c.x \ lib/eina/eina_inline_private.h \ +lib/eina/eina_internal.h \ tests/eina/sample.gpx \ tests/eina/eina_suite.x \ lib/eina/eina_config.h.in \ diff --git a/src/lib/eina/eina_internal.h b/src/lib/eina/eina_internal.h new file mode 100644 index 0000000..391ad94 --- /dev/null +++ b/src/lib/eina/eina_internal.h @@ -0,0 +1,16 @@ +#ifndef EINA_INTERNAL_H +#define EINA_INTERNAL_H + +/* + * eina_internal.h + * + * Lists public functions that are meant for internal use by EFL only and are + * not stable API. + */ + +/** + * @brief Cancels all pending promise/futures. + */ +EAPI void __eina_promise_cancel_all(void); + +#endif