ecore/wayland: Move Ecore_Wl_Output to a private header.

This is just not being used outside of ecore_wayland library, so just
move it and nothing breaks.
This commit is contained in:
Rafael Antognolli 2013-11-04 11:06:49 -02:00
parent d93c4b2307
commit fdf6828b7e
2 changed files with 13 additions and 13 deletions

View File

@ -96,19 +96,6 @@ struct _Ecore_Wl_Global
struct wl_list link;
};
struct _Ecore_Wl_Output
{
Ecore_Wl_Display *display;
struct wl_output *output;
Eina_Rectangle allocation;
int mw, mh;
int transform;
struct wl_list link;
void (*destroy) (Ecore_Wl_Output *output, void *data);
void *data;
};
struct _Ecore_Wl_Event_Mouse_In
{
int modifiers;

View File

@ -202,6 +202,19 @@ struct _Ecore_Wl_Input
} repeat;
};
struct _Ecore_Wl_Output
{
Ecore_Wl_Display *display;
struct wl_output *output;
Eina_Rectangle allocation;
int mw, mh;
int transform;
struct wl_list link;
void (*destroy) (Ecore_Wl_Output *output, void *data);
void *data;
};
struct _Ecore_Wl_Dnd
{
Ecore_Wl_Display *ewd;