diff options
author | Rafael Antognolli <rafael.antognolli@intel.com> | 2013-11-04 11:06:49 -0200 |
---|---|---|
committer | Rafael Antognolli <rafael.antognolli@intel.com> | 2013-11-04 11:06:49 -0200 |
commit | fdf6828b7e705ea058ca3ac6475d1d3ff53cd31f (patch) | |
tree | 05e253c312afa63feadf12de7cc6620422576f77 /src | |
parent | d93c4b23072d3fe4cd2b2375cf87b424d1a56ba6 (diff) |
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.
Diffstat (limited to '')
-rw-r--r-- | src/lib/ecore_wayland/Ecore_Wayland.h | 13 | ||||
-rw-r--r-- | src/lib/ecore_wayland/ecore_wl_private.h | 13 |
2 files changed, 13 insertions, 13 deletions
diff --git a/src/lib/ecore_wayland/Ecore_Wayland.h b/src/lib/ecore_wayland/Ecore_Wayland.h index d4efec94d0..bcb7141c38 100644 --- a/src/lib/ecore_wayland/Ecore_Wayland.h +++ b/src/lib/ecore_wayland/Ecore_Wayland.h | |||
@@ -96,19 +96,6 @@ struct _Ecore_Wl_Global | |||
96 | struct wl_list link; | 96 | struct wl_list link; |
97 | }; | 97 | }; |
98 | 98 | ||
99 | struct _Ecore_Wl_Output | ||
100 | { | ||
101 | Ecore_Wl_Display *display; | ||
102 | struct wl_output *output; | ||
103 | Eina_Rectangle allocation; | ||
104 | int mw, mh; | ||
105 | int transform; | ||
106 | struct wl_list link; | ||
107 | |||
108 | void (*destroy) (Ecore_Wl_Output *output, void *data); | ||
109 | void *data; | ||
110 | }; | ||
111 | |||
112 | struct _Ecore_Wl_Event_Mouse_In | 99 | struct _Ecore_Wl_Event_Mouse_In |
113 | { | 100 | { |
114 | int modifiers; | 101 | int modifiers; |
diff --git a/src/lib/ecore_wayland/ecore_wl_private.h b/src/lib/ecore_wayland/ecore_wl_private.h index fa92e6d93e..69b2f95dcb 100644 --- a/src/lib/ecore_wayland/ecore_wl_private.h +++ b/src/lib/ecore_wayland/ecore_wl_private.h | |||
@@ -202,6 +202,19 @@ struct _Ecore_Wl_Input | |||
202 | } repeat; | 202 | } repeat; |
203 | }; | 203 | }; |
204 | 204 | ||
205 | struct _Ecore_Wl_Output | ||
206 | { | ||
207 | Ecore_Wl_Display *display; | ||
208 | struct wl_output *output; | ||
209 | Eina_Rectangle allocation; | ||
210 | int mw, mh; | ||
211 | int transform; | ||
212 | struct wl_list link; | ||
213 | |||
214 | void (*destroy) (Ecore_Wl_Output *output, void *data); | ||
215 | void *data; | ||
216 | }; | ||
217 | |||
205 | struct _Ecore_Wl_Dnd | 218 | struct _Ecore_Wl_Dnd |
206 | { | 219 | { |
207 | Ecore_Wl_Display *ewd; | 220 | Ecore_Wl_Display *ewd; |