1 // Copyright 2019-2022 The Khronos Group Inc. 2 // 3 // SPDX-License-Identifier: Apache-2.0 4 5 #ifndef _X11_XLIB_H_ 6 #define _X11_XLIB_H_ 7 8 // "X11/Xlib.h" for non-X11 compilation environment 9 10 typedef int Display; 11 typedef int Window; 12 typedef int VisualID; 13 14 #endif 15