#include <stdbool.h>
#include <stdlib.h>
#include <stdint.h>
#include "wayland-util.h"
#ifndef __has_attribute
#define __has_attribute …
#endif
#if (__has_attribute(visibility) || defined(__GNUC__) && __GNUC__ >= 4)
#define WL_PRIVATE …
#else
#define WL_PRIVATE
#endif
extern const struct wl_interface wl_output_interface;
extern const struct wl_interface wl_seat_interface;
extern const struct wl_interface wl_surface_interface;
extern const struct wl_interface xdg_popup_interface;
extern const struct wl_interface xdg_positioner_interface;
extern const struct wl_interface xdg_surface_interface;
extern const struct wl_interface xdg_toplevel_interface;
static const struct wl_interface *xdg_shell_types[] = …;
static const struct wl_message xdg_wm_base_requests[] = …;
static const struct wl_message xdg_wm_base_events[] = …;
WL_PRIVATE const struct wl_interface xdg_wm_base_interface = …;
static const struct wl_message xdg_positioner_requests[] = …;
WL_PRIVATE const struct wl_interface xdg_positioner_interface = …;
static const struct wl_message xdg_surface_requests[] = …;
static const struct wl_message xdg_surface_events[] = …;
WL_PRIVATE const struct wl_interface xdg_surface_interface = …;
static const struct wl_message xdg_toplevel_requests[] = …;
static const struct wl_message xdg_toplevel_events[] = …;
WL_PRIVATE const struct wl_interface xdg_toplevel_interface = …;
static const struct wl_message xdg_popup_requests[] = …;
static const struct wl_message xdg_popup_events[] = …;
WL_PRIVATE const struct wl_interface xdg_popup_interface = …;