summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Philippe Andre <jp.andre@samsung.com>2017-05-16 15:33:58 +0900
committerJean-Philippe Andre <jp.andre@samsung.com>2017-05-16 20:47:48 +0900
commitd682c3dfbb7a7fbda9030c7d7b0d9c07cf63c037 (patch)
treeec121cf5b35b45d74b90b6b4f5da49fa49fd8ef2
parent1f13696b84e93fd987a668a254004fd156ed0355 (diff)
downloadefl-d682c3dfbb7a7fbda9030c7d7b0d9c07cf63c037.tar.gz
evas: Move Evas_Engine_Info to Evas_Legacy.h
-rw-r--r--src/lib/evas/Evas_Common.h8
-rw-r--r--src/lib/evas/Evas_Legacy.h5
2 files changed, 6 insertions, 7 deletions
diff --git a/src/lib/evas/Evas_Common.h b/src/lib/evas/Evas_Common.h
index a62d1d7c60..6cda8956c0 100644
--- a/src/lib/evas/Evas_Common.h
+++ b/src/lib/evas/Evas_Common.h
@@ -443,13 +443,7 @@ typedef enum
* iteration */
} Evas_Callback_Type;
-
-typedef struct _Evas_Engine_Info /** Generic engine information. Generic info is useless */
-{
- int magic; /**< Magic number */
-} Evas_Engine_Info;
-
-
+// FIXME: Move to Evas_Legacy.h
struct _Evas_Event_Mouse_Down /** Mouse button press event */
{
int button; /**< Mouse button number that went down (1 - 32) */
diff --git a/src/lib/evas/Evas_Legacy.h b/src/lib/evas/Evas_Legacy.h
index 7fcfe6fd41..8d811df2a6 100644
--- a/src/lib/evas/Evas_Legacy.h
+++ b/src/lib/evas/Evas_Legacy.h
@@ -44,6 +44,11 @@ EAPI Evas *evas_new(void) EINA_WARN_UNUSED_RESULT EINA_MALLOC;
*/
EAPI void evas_free(Evas *e) EINA_ARG_NONNULL(1);
+typedef struct _Evas_Engine_Info /** Generic engine information. Generic info is useless */
+{
+ int magic; /**< Magic number */
+} Evas_Engine_Info;
+
/**
* @brief Applies the engine settings for the given evas from the given
* @c Evas_Engine_Info structure.