lin
2025-08-01 633231e833e21d5b8b1c00cb15aedb62b3b78e8f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
 * Copyright © 2008 Kristian Høgsberg
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice (including the
 * next paragraph) shall be included in all copies or substantial
 * portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
 
/** \file
 *
 *  \brief Include the server API, deprecations and protocol C API.
 *
 *  \warning Use of this header file is discouraged. Prefer including
 *  wayland-server-core.h instead, which does not include the
 *  server protocol header and as such only defines the library
 *  API, excluding the deprecated API below.
 */
 
#ifndef WAYLAND_SERVER_H
#define WAYLAND_SERVER_H
 
#include <stdint.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