graphics_regis.h revision 2e4f8982
12e4f8982Smrg/* $XTermId: graphics_regis.h,v 1.2 2016/05/29 16:34:47 tom Exp $ */ 2894e0ac8Smrg 3894e0ac8Smrg/* 42e4f8982Smrg * Copyright 2014,2016 by Ross Combs 52e4f8982Smrg * Copyright 2014,2016 by Thomas E. Dickey 6894e0ac8Smrg * 7894e0ac8Smrg * All Rights Reserved 8894e0ac8Smrg * 9894e0ac8Smrg * Permission is hereby granted, free of charge, to any person obtaining a 10894e0ac8Smrg * copy of this software and associated documentation files (the 11894e0ac8Smrg * "Software"), to deal in the Software without restriction, including 12894e0ac8Smrg * without limitation the rights to use, copy, modify, merge, publish, 13894e0ac8Smrg * distribute, sublicense, and/or sell copies of the Software, and to 14894e0ac8Smrg * permit persons to whom the Software is furnished to do so, subject to 15894e0ac8Smrg * the following conditions: 16894e0ac8Smrg * 17894e0ac8Smrg * The above copyright notice and this permission notice shall be included 18894e0ac8Smrg * in all copies or substantial portions of the Software. 19894e0ac8Smrg * 20894e0ac8Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 21894e0ac8Smrg * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 22894e0ac8Smrg * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 23894e0ac8Smrg * IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY 24894e0ac8Smrg * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 25894e0ac8Smrg * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 26894e0ac8Smrg * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 27894e0ac8Smrg * 28894e0ac8Smrg * Except as contained in this notice, the name(s) of the above copyright 29894e0ac8Smrg * holders shall not be used in advertising or otherwise to promote the 30894e0ac8Smrg * sale, use or other dealings in this Software without prior written 31894e0ac8Smrg * authorization. 32894e0ac8Smrg */ 33894e0ac8Smrg 34894e0ac8Smrg#ifndef included_graphics_regis_h 35894e0ac8Smrg#define included_graphics_regis_h 36894e0ac8Smrg/* *INDENT-OFF* */ 37894e0ac8Smrg 38894e0ac8Smrg#include <ptyx.h> 39894e0ac8Smrg 40894e0ac8Smrg#if OPT_REGIS_GRAPHICS 412e4f8982Smrgextern void parse_regis(XtermWidget /* xw */, ANSI */* params */, char const */* string */); 42894e0ac8Smrg#else 43894e0ac8Smrg#define parse_regis(xw, params, string) /* nothing */ 44894e0ac8Smrg#endif 45894e0ac8Smrg 46894e0ac8Smrg/* *INDENT-ON* */ 47894e0ac8Smrg 48894e0ac8Smrg#endif /* included_graphics_regis_h */ 49