bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=9edce200816b699defea77b1082ffcbf79f3475a
commit 9edce200816b699defea77b1082ffcbf79f3475a Author: Mike Blumenkrantz <[email protected]> Date: Thu Apr 16 12:10:52 2020 -0400 elm/win: declare prototype for ecore_evas_dnd_mark_motion_used ../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); --
