ecore/wayland: Move Ecore_Wl_Output to a private header.
authorRafael Antognolli <rafael.antognolli@intel.com>
Mon, 4 Nov 2013 13:06:49 +0000 (11:06 -0200)
committerRafael Antognolli <rafael.antognolli@intel.com>
Mon, 4 Nov 2013 13:06:49 +0000 (11:06 -0200)
This is just not being used outside of ecore_wayland library, so just
move it and nothing breaks.

src/lib/ecore_wayland/Ecore_Wayland.h
src/lib/ecore_wayland/ecore_wl_private.h

index d4efec9..bcb7141 100644 (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;
index fa92e6d..69b2f95 100644 (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;