evas: Move Evas_Engine_Info to Evas_Legacy.h

This commit is contained in:
Jean-Philippe Andre 2017-05-16 15:33:58 +09:00
parent 1f13696b84
commit d682c3dfbb
2 changed files with 6 additions and 7 deletions

View File

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

View File

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