derekf pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=448c7ca2ce6485d885b48407919e715de3365b28

commit 448c7ca2ce6485d885b48407919e715de3365b28
Author: Derek Foreman <[email protected]>
Date:   Tue Sep 18 09:42:34 2018 -0500

    ecore_anim: Move struct Ecore_Animator to private header
    
    Summary:
    We're going to use this in ecore_evas shortly.
    
    Depends on D7039
    
    Reviewers: devilhorns
    
    Reviewed By: devilhorns
    
    Subscribers: cedric, #reviewers, #committers
    
    Tags: #efl
    
    Differential Revision: https://phab.enlightenment.org/D7040
---
 src/lib/ecore/ecore_anim.c    | 16 ----------------
 src/lib/ecore/ecore_private.h | 15 +++++++++++++++
 2 files changed, 15 insertions(+), 16 deletions(-)

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 */
 

-- 


Reply via email to