diff --git a/src/lib/ecore/ecore_anim.c b/src/lib/ecore/ecore_anim.c index 4c614c427d..337df5f1ca 100644 --- a/src/lib/ecore/ecore_anim.c +++ b/src/lib/ecore/ecore_anim.c @@ -43,22 +43,6 @@ #include "Ecore.h" #include "ecore_private.h" -struct _Ecore_Animator -{ - EINA_INLIST; - - Ecore_Task_Cb func; - void *data; - - double start, run; - Ecore_Timeline_Cb run_func; - void *run_data; - - Eina_Bool delete_me : 1; - Eina_Bool suspended : 1; - Eina_Bool just_added : 1; -}; - static int _ecore_anim_log_dom = -1; #ifdef ERR diff --git a/src/lib/ecore/ecore_private.h b/src/lib/ecore/ecore_private.h index 8d7a2338a8..b886de38c4 100644 --- a/src/lib/ecore/ecore_private.h +++ b/src/lib/ecore/ecore_private.h @@ -209,6 +209,21 @@ struct _Efl_Appthread_Data void *thdat; }; +struct _Ecore_Animator +{ + EINA_INLIST; + + Ecore_Task_Cb func; + void *data; + + double start, run; + Ecore_Timeline_Cb run_func; + void *run_data; + + Eina_Bool delete_me : 1; + Eina_Bool suspended : 1; + Eina_Bool just_added : 1; +}; #define EVAS_FRAME_QUEUING 1 /* for test */