ecore-wl2: Move variables to be above functions
authorChristopher Michael <cp.michael@samsung.com>
Tue, 5 Nov 2019 13:53:29 +0000 (08:53 -0500)
committerWonki Kim <wonki_.kim@samsung.com>
Mon, 11 Nov 2019 02:20:42 +0000 (11:20 +0900)
NB: No functional changes

src/lib/ecore_wl2/ecore_wl2_private.h

index 35fdd8a..d2a697b 100644 (file)
@@ -805,6 +805,9 @@ struct _Ecore_Wl2_Egl_Window
 };
 //
 
+EAPI extern int _ecore_wl2_event_window_www;
+EAPI extern int _ecore_wl2_event_window_www_drag;
+
 Ecore_Wl2_Window *_ecore_wl2_display_window_surface_find(Ecore_Wl2_Display *display, struct wl_surface *wl_surface);
 void _display_event_free(void *d, void *event EINA_UNUSED);
 
@@ -844,6 +847,8 @@ void _ecore_wl2_buffer_test(Ecore_Wl2_Display *ewd);
 
 EAPI void ecore_wl2_window_weight_set(Ecore_Wl2_Window *window, double w, double h);
 
+Ecore_Wl2_Output *_ecore_wl2_output_find(Ecore_Wl2_Display *dsp, struct wl_output *op);
+
 // TIZEN_ONLY(20171107): support a tizen_keyrouter interface
 int ecore_wl2_input_keycode_from_keysym(struct xkb_keymap *keymap, xkb_keysym_t keysym, xkb_keycode_t **keycodes);
 void _ecore_wl2_keyrouter_setup(Ecore_Wl2_Display *ewd, unsigned int id, unsigned int version);
@@ -870,9 +875,4 @@ void _ecore_wl2_window_shutdown(void);
 Eina_Hash *_ecore_wl2_window_hash_get(void);
 //
 
-EAPI extern int _ecore_wl2_event_window_www;
-EAPI extern int _ecore_wl2_event_window_www_drag;
-
-Ecore_Wl2_Output *_ecore_wl2_output_find(Ecore_Wl2_Display *dsp, struct wl_output *op);
-
 #endif