Path: blob/master/thirdparty/linuxbsd_headers/X11/extensions/Xext.h
9905 views
/*1*2Copyright 1989, 1998 The Open Group34Permission to use, copy, modify, distribute, and sell this software and its5documentation for any purpose is hereby granted without fee, provided that6the above copyright notice appear in all copies and that both that7copyright notice and this permission notice appear in supporting8documentation.910The above copyright notice and this permission notice shall be included in11all copies or substantial portions of the Software.1213THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR14IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,15FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE16OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN17AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN18CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.1920Except as contained in this notice, the name of The Open Group shall not be21used in advertising or otherwise to promote the sale, use or other dealings22in this Software without prior written authorization from The Open Group.23*/2425#ifndef _XEXT_H_26#define _XEXT_H_2728#include <X11/Xfuncproto.h>2930_XFUNCPROTOBEGIN3132typedef int (*XextErrorHandler) (33Display * /* dpy */,34_Xconst char* /* ext_name */,35_Xconst char* /* reason */36);3738extern XextErrorHandler XSetExtensionErrorHandler(39XextErrorHandler /* handler */40);4142extern int XMissingExtension(43Display* /* dpy */,44_Xconst char* /* ext_name */45);4647_XFUNCPROTOEND4849#define X_EXTENSION_UNKNOWN "unknown"50#define X_EXTENSION_MISSING "missing"5152#endif /* _XEXT_H_ */535455