wl desktop shell - fix symbols to explicily be extern as they should

missing externs - compiler fixed it up for us... -fno-common will stop
that... and this fixes that.

@fix
This commit is contained in:
Carsten Haitzler 2020-05-16 00:24:11 +01:00
parent 9f3fcf2225
commit 60cea009dc
1 changed files with 3 additions and 3 deletions

View File

@ -4,9 +4,9 @@
EINTERN Eina_Bool e_input_panel_init(void);
EINTERN void e_input_panel_shutdown(void);
EINTERN Eina_Hash *shell_resources;
EINTERN Eina_Hash *xdg_shell_resources;
EINTERN Eina_List *hooks;
EINTERN extern Eina_Hash *shell_resources;
EINTERN extern Eina_Hash *xdg_shell_resources;
EINTERN extern Eina_List *hooks;
EINTERN void e_shell_surface_destroy(struct wl_resource *resource);