|
||||
File indexing completed on 2025-01-18 10:02:14
0001 /**************************************************************************** 0002 * Copyright 2018-2020,2021 Thomas E. Dickey * 0003 * Copyright 1998-2000,2001 Free Software Foundation, Inc. * 0004 * * 0005 * Permission is hereby granted, free of charge, to any person obtaining a * 0006 * copy of this software and associated documentation files (the * 0007 * "Software"), to deal in the Software without restriction, including * 0008 * without limitation the rights to use, copy, modify, merge, publish, * 0009 * distribute, distribute with modifications, sublicense, and/or sell * 0010 * copies of the Software, and to permit persons to whom the Software is * 0011 * furnished to do so, subject to the following conditions: * 0012 * * 0013 * The above copyright notice and this permission notice shall be included * 0014 * in all copies or substantial portions of the Software. * 0015 * * 0016 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * 0017 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * 0018 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * 0019 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * 0020 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * 0021 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * 0022 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * 0023 * * 0024 * Except as contained in this notice, the name(s) of the above copyright * 0025 * holders shall not be used in advertising or otherwise to promote the * 0026 * sale, use or other dealings in this Software without prior written * 0027 * authorization. * 0028 ****************************************************************************/ 0029 0030 /**************************************************************************** 0031 * Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995 * 0032 * and: Eric S. Raymond <esr@snark.thyrsus.com> * 0033 ****************************************************************************/ 0034 0035 /* $Id: termcap.h.in,v 1.20 2021/06/17 21:26:02 tom Exp $ */ 0036 0037 #ifndef NCURSES_TERMCAP_H_incl 0038 #define NCURSES_TERMCAP_H_incl 1 0039 0040 #undef NCURSES_VERSION 0041 #define NCURSES_VERSION "6.5" 0042 0043 #include <ncursesw/ncurses_dll.h> 0044 0045 #ifdef __cplusplus 0046 extern "C" 0047 { 0048 #endif /* __cplusplus */ 0049 0050 #include <sys/types.h> 0051 0052 #undef NCURSES_OSPEED 0053 #define NCURSES_OSPEED short 0054 0055 extern NCURSES_EXPORT_VAR(char) PC; 0056 extern NCURSES_EXPORT_VAR(char *) UP; 0057 extern NCURSES_EXPORT_VAR(char *) BC; 0058 extern NCURSES_EXPORT_VAR(NCURSES_OSPEED) ospeed; 0059 0060 #if !defined(NCURSES_TERM_H_incl) 0061 extern NCURSES_EXPORT(char *) tgetstr (const char *, char **); 0062 extern NCURSES_EXPORT(char *) tgoto (const char *, int, int); 0063 extern NCURSES_EXPORT(int) tgetent (char *, const char *); 0064 extern NCURSES_EXPORT(int) tgetflag (const char *); 0065 extern NCURSES_EXPORT(int) tgetnum (const char *); 0066 extern NCURSES_EXPORT(int) tputs (const char *, int, int (*)(int)); 0067 #endif 0068 0069 #ifdef __cplusplus 0070 } 0071 #endif 0072 0073 #endif /* NCURSES_TERMCAP_H_incl */
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |