eina: Add missing eina_internal.h

This commit is contained in:
Jean-Philippe Andre 2017-12-19 10:18:43 +09:00
parent 90f30ea418
commit 29ce7550eb
2 changed files with 17 additions and 0 deletions

View File

@ -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 \

View File

@ -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