xref: /aosp_15_r20/external/swiftshader/include/Wayland/wayland-client.h (revision 03ce13f70fcc45d86ee91b7ee4cab1936a95046e)
1*03ce13f7SAndroid Build Coastguard Worker /*
2*03ce13f7SAndroid Build Coastguard Worker  * Copyright © 2008 Kristian Høgsberg
3*03ce13f7SAndroid Build Coastguard Worker  *
4*03ce13f7SAndroid Build Coastguard Worker  * Permission is hereby granted, free of charge, to any person obtaining
5*03ce13f7SAndroid Build Coastguard Worker  * a copy of this software and associated documentation files (the
6*03ce13f7SAndroid Build Coastguard Worker  * "Software"), to deal in the Software without restriction, including
7*03ce13f7SAndroid Build Coastguard Worker  * without limitation the rights to use, copy, modify, merge, publish,
8*03ce13f7SAndroid Build Coastguard Worker  * distribute, sublicense, and/or sell copies of the Software, and to
9*03ce13f7SAndroid Build Coastguard Worker  * permit persons to whom the Software is furnished to do so, subject to
10*03ce13f7SAndroid Build Coastguard Worker  * the following conditions:
11*03ce13f7SAndroid Build Coastguard Worker  *
12*03ce13f7SAndroid Build Coastguard Worker  * The above copyright notice and this permission notice (including the
13*03ce13f7SAndroid Build Coastguard Worker  * next paragraph) shall be included in all copies or substantial
14*03ce13f7SAndroid Build Coastguard Worker  * portions of the Software.
15*03ce13f7SAndroid Build Coastguard Worker  *
16*03ce13f7SAndroid Build Coastguard Worker  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17*03ce13f7SAndroid Build Coastguard Worker  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18*03ce13f7SAndroid Build Coastguard Worker  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19*03ce13f7SAndroid Build Coastguard Worker  * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20*03ce13f7SAndroid Build Coastguard Worker  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21*03ce13f7SAndroid Build Coastguard Worker  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22*03ce13f7SAndroid Build Coastguard Worker  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23*03ce13f7SAndroid Build Coastguard Worker  * SOFTWARE.
24*03ce13f7SAndroid Build Coastguard Worker  */
25*03ce13f7SAndroid Build Coastguard Worker 
26*03ce13f7SAndroid Build Coastguard Worker /** \file
27*03ce13f7SAndroid Build Coastguard Worker  *
28*03ce13f7SAndroid Build Coastguard Worker  *  \brief Include the client API and protocol C API.
29*03ce13f7SAndroid Build Coastguard Worker  *
30*03ce13f7SAndroid Build Coastguard Worker  *  \warning Use of this header file is discouraged. Prefer including
31*03ce13f7SAndroid Build Coastguard Worker  *  wayland-client-core.h instead, which does not include the
32*03ce13f7SAndroid Build Coastguard Worker  *  client protocol header and as such only defines the library
33*03ce13f7SAndroid Build Coastguard Worker  *  API.
34*03ce13f7SAndroid Build Coastguard Worker  */
35*03ce13f7SAndroid Build Coastguard Worker 
36*03ce13f7SAndroid Build Coastguard Worker #ifndef WAYLAND_CLIENT_H
37*03ce13f7SAndroid Build Coastguard Worker #define WAYLAND_CLIENT_H
38*03ce13f7SAndroid Build Coastguard Worker 
39*03ce13f7SAndroid Build Coastguard Worker #include "wayland-client-core.h"
40*03ce13f7SAndroid Build Coastguard Worker #include "wayland-client-protocol.h"
41*03ce13f7SAndroid Build Coastguard Worker 
42*03ce13f7SAndroid Build Coastguard Worker #endif
43