summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Juyung Seo <seojuyung2@gmail.com>2014-11-25 17:57:45 +0900
committerDaniel Juyung Seo <seojuyung2@gmail.com>2014-11-25 19:30:16 +0900
commit29abdd9ca4a620fdb1e24ca10898a8bae9170901 (patch)
tree5e3f2842061082a34460d176ce539ca0feee9988
parent2b952597c1306c4c54e58ad7100b36a1572603c8 (diff)
downloadefl-29abdd9ca4a620fdb1e24ca10898a8bae9170901.tar.gz
ecore: Add warnings to the public internal APIs.
These APIs were not meant to be exposed so it is not recommended to use them out side of EFL. We had to expose them to use them between EFL libraries. (Talked with Raster)
-rw-r--r--src/lib/ecore/Ecore_Common.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/ecore/Ecore_Common.h b/src/lib/ecore/Ecore_Common.h
index f47ab39997..d6209872f9 100644
--- a/src/lib/ecore/Ecore_Common.h
+++ b/src/lib/ecore/Ecore_Common.h
@@ -2916,6 +2916,8 @@ EAPI Ecore_Animator_Source ecore_animator_source_get(void);
* produce tick events that call ecore_animator_custom_tick(). If @p func
* is @c NULL then no function is called to begin custom ticking.
*
+ * @warning Do not use this function unless you know what you are doing.
+ *
* @see ecore_animator_source_set()
* @see ecore_animator_custom_source_tick_end_callback_set()
* @see ecore_animator_custom_tick()
@@ -2934,6 +2936,8 @@ EAPI void ecore_animator_custom_source_tick_begin_callback_set(Ecore_Cb func, co
* called to stop ticking. For more information please see
* ecore_animator_custom_source_tick_begin_callback_set().
*
+ * @warning Do not use this function unless you know what you are doing.
+ *
* @see ecore_animator_source_set()
* @see ecore_animator_custom_source_tick_begin_callback_set()
* @see ecore_animator_custom_tick()
@@ -2949,6 +2953,8 @@ EAPI void ecore_animator_custom_source_tick_end_callback_set(Ecore_Cb func, cons
* the animator source(set by ecore_animator_source_set()) is not set to
* ECORE_ANIMATOR_SOURCE_CUSTOM.
*
+ * @warning Do not use this function unless you know what you are doing.
+ *
* @see ecore_animator_source_set()
* @see ecore_animator_custom_source_tick_begin_callback_set
* @see ecore_animator_custom_source_tick_end_callback_set()()