MFC corrected printing of the slice number when adding a GPT partition.
[dragonfly.git] / contrib / ncurses-5.4 / menu / mf_common.h
blobb9073c816e84378a9b38893f7533b6ae055eb215
1 /****************************************************************************
2 * Copyright (c) 1998-2002,2003 Free Software Foundation, Inc. *
3 * *
4 * Permission is hereby granted, free of charge, to any person obtaining a *
5 * copy of this software and associated documentation files (the *
6 * "Software"), to deal in the Software without restriction, including *
7 * without limitation the rights to use, copy, modify, merge, publish, *
8 * distribute, distribute with modifications, sublicense, and/or sell *
9 * copies of the Software, and to permit persons to whom the Software is *
10 * furnished to do so, subject to the following conditions: *
11 * *
12 * The above copyright notice and this permission notice shall be included *
13 * in all copies or substantial portions of the Software. *
14 * *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
16 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
18 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
21 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
22 * *
23 * Except as contained in this notice, the name(s) of the above copyright *
24 * holders shall not be used in advertising or otherwise to promote the *
25 * sale, use or other dealings in this Software without prior written *
26 * authorization. *
27 ****************************************************************************/
29 /****************************************************************************
30 * Author: Juergen Pfeifer, 1995,1997 *
31 ****************************************************************************/
33 /* $Id: mf_common.h,v 0.19 2003/10/25 15:24:29 tom Exp $ */
35 /* Common internal header for menu and form library */
37 #ifndef MF_COMMON_H_incl
38 #define MF_COMMON_H_incl 1
40 #include <ncurses_cfg.h>
41 #include <curses.h>
43 #include <stdlib.h>
44 #include <sys/types.h>
45 #include <assert.h>
46 #include <string.h>
47 #include <ctype.h>
48 #include <errno.h>
50 #if DECL_ERRNO
51 extern int errno;
52 #endif
54 /* in case of debug version we ignore the suppression of assertions */
55 #ifdef TRACE
56 # ifdef NDEBUG
57 # undef NDEBUG
58 # endif
59 #endif
61 #include <nc_alloc.h>
63 #if USE_RCS_IDS
64 #define MODULE_ID(id) static const char Ident[] = id;
65 #else
66 #define MODULE_ID(id) /*nothing*/
67 #endif
70 /* Maximum regular 8-bit character code */
71 #define MAX_REGULAR_CHARACTER (0xff)
73 #define SET_ERROR(code) (errno=(code))
74 #define GET_ERROR() (errno)
75 #define RETURN(code) return( SET_ERROR(code) )
77 /* The few common values in the status fields for menus and forms */
78 #define _POSTED (0x01) /* menu or form is posted */
79 #define _IN_DRIVER (0x02) /* menu or form is processing hook routine */
81 /* Call object hook */
82 #define Call_Hook( object, handler ) \
83 if ( (object) && ((object)->handler) )\
85 (object)->status |= _IN_DRIVER;\
86 (object)->handler(object);\
87 (object)->status &= ~_IN_DRIVER;\
90 #define INLINE
92 #ifndef TRACE
93 # if CC_HAS_INLINE_FUNCS
94 # undef INLINE
95 # define INLINE inline
96 # endif
97 #endif
99 #endif /* MF_COMMON_H_incl */