123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- #ifndef WAYLAND_SERVER_H
- #define WAYLAND_SERVER_H
- #include "wayland-server-core.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- #ifndef WL_HIDE_DEPRECATED
- struct wl_object {
- const struct wl_interface *interface;
- const void *implementation;
- uint32_t id;
- };
- struct wl_resource {
- struct wl_object object;
- wl_resource_destroy_func_t destroy;
- struct wl_list link;
- struct wl_signal destroy_signal;
- struct wl_client *client;
- void *data;
- };
- struct wl_buffer {
- struct wl_resource resource;
- int32_t width, height;
- uint32_t busy_count;
- } WL_DEPRECATED;
- uint32_t
- wl_client_add_resource(struct wl_client *client,
- struct wl_resource *resource) WL_DEPRECATED;
- struct wl_resource *
- wl_client_add_object(struct wl_client *client,
- const struct wl_interface *interface,
- const void *implementation,
- uint32_t id, void *data) WL_DEPRECATED;
- struct wl_resource *
- wl_client_new_object(struct wl_client *client,
- const struct wl_interface *interface,
- const void *implementation, void *data) WL_DEPRECATED;
- struct wl_global *
- wl_display_add_global(struct wl_display *display,
- const struct wl_interface *interface,
- void *data,
- wl_global_bind_func_t bind) WL_DEPRECATED;
- void
- wl_display_remove_global(struct wl_display *display,
- struct wl_global *global) WL_DEPRECATED;
- #endif
- #ifdef __cplusplus
- }
- #endif
- #include "wayland-server-protocol.h"
- #endif
|