From 9edce200816b699defea77b1082ffcbf79f3475a Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Thu, 16 Apr 2020 12:10:52 -0400 Subject: [PATCH] elm/win: declare prototype for ecore_evas_dnd_mark_motion_used MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ../src/lib/elementary/efl_ui_win.c: In function ‘_motion_cb’: ../src/lib/elementary/efl_ui_win.c:9271:14: warning: implicit declaration of function ‘ecore_evas_dnd_mark_motion_used’ [-Wimplicit-function-declaration] 9271 | ecore_evas_dnd_mark_motion_used(ee, seat); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Differential Revision: https://phab.enlightenment.org/D11717 --- src/lib/elementary/efl_ui_win.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/elementary/efl_ui_win.c b/src/lib/elementary/efl_ui_win.c index 0c1e960ce5..1ceda1513b 100644 --- a/src/lib/elementary/efl_ui_win.c +++ b/src/lib/elementary/efl_ui_win.c @@ -40,6 +40,8 @@ #define FRAME_OBJ_THEME_MIN_VERSION 119 +extern void ecore_evas_dnd_mark_motion_used(Ecore_Evas *ee, unsigned int seat); + Ecore_Evas *_wayland_shm_new(const char *disp_name, Ecore_Window parent, int x, int y, int w, int h, Eina_Bool frame); Ecore_Evas *_wayland_egl_new(const char *disp_name, Ecore_Window parent, int x, int y, int w, int h, Eina_Bool frame, const int *opt);