Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-05-18 08:29:50

0001 /****************************************************************************
0002  * Copyright 2020 Thomas E. Dickey                                          *
0003  * Copyright 1998-2002,2003 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:  Juergen Pfeifer, 1995,1997                                    *
0032  ****************************************************************************/
0033 
0034 /* $Id: eti.h,v 1.9 2020/02/02 23:34:34 tom Exp $ */
0035 
0036 #ifndef NCURSES_ETI_H_incl
0037 #define NCURSES_ETI_H_incl 1
0038 
0039 #define E_OK            (0)
0040 #define E_SYSTEM_ERROR      (-1)
0041 #define E_BAD_ARGUMENT      (-2)
0042 #define E_POSTED        (-3)
0043 #define E_CONNECTED     (-4)
0044 #define E_BAD_STATE     (-5)
0045 #define E_NO_ROOM       (-6)
0046 #define E_NOT_POSTED        (-7)
0047 #define E_UNKNOWN_COMMAND   (-8)
0048 #define E_NO_MATCH      (-9)
0049 #define E_NOT_SELECTABLE    (-10)
0050 #define E_NOT_CONNECTED         (-11)
0051 #define E_REQUEST_DENIED    (-12)
0052 #define E_INVALID_FIELD         (-13)
0053 #define E_CURRENT       (-14)
0054 
0055 #endif