Lines Matching full:print
4 print " char *term_names; /* str_table offset of term names */"
5 print " char *str_table; /* pointer to string table */"
6 print " NCURSES_SBOOL *Booleans; /* array of boolean values */"
8 print " char **Strings; /* array of string offsets */"
9 print ""
10 print "#if NCURSES_XNAMES"
11 print " char *ext_str_table; /* pointer to extended string table */"
12 print " char **ext_Names; /* corresponding names */"
13 print ""
14 print " unsigned short num_Booleans;/* count total Booleans */";
15 print " unsigned short num_Numbers; /* count total Numbers */";
16 print " unsigned short num_Strings; /* count total Strings */";
17 print ""
18 print " unsigned short ext_Booleans;/* count extensions to Booleans */";
19 print " unsigned short ext_Numbers; /* count extensions to Numbers */";
20 print " unsigned short ext_Strings; /* count extensions to Strings */";
21 print "#endif /* NCURSES_XNAMES */"
22 print ""
28 print "/****************************************************************************"
29 print " * Copyright 2018-2021,2023 Thomas E. Dickey *"
30 print " * Copyright 1998-2013,2017 Free Software Foundation, Inc. *"
31 print " * *"
32 print " * Permission is hereby granted, free of charge, to any person obtaining a *"
33 print " * copy of this software and associated documentation files (the *"
34 print " * \"Software\"), to deal in the Software without restriction, including *"
35 print " * without limitation the rights to use, copy, modify, merge, publish, *"
36 print " * distribute, distribute with modifications, sublicense, and/or sell *"
37 print " * copies of the Software, and to permit persons to whom the Software is *"
38 print " * furnished to do so, subject to the following conditions: *"
39 print " * *"
40 print " * The above copyright notice and this permission notice shall be included *"
41 print " * in all copies or substantial portions of the Software. *"
42 print " * *"
43 print " * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS *"
44 print " * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *"
45 print " * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *"
46 print " * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *"
47 print " * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *"
48 print " * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *"
49 print " * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *"
50 print " * *"
51 print " * Except as contained in this notice, the name(s) of the above copyright *"
52 print " * holders shall not be used in advertising or otherwise to promote the *"
53 print " * sale, use or other dealings in this Software without prior written *"
54 print " * authorization. *"
55 print " ****************************************************************************/"
56 print ""
57 print "/****************************************************************************/"
58 print "/* Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995 */"
59 print "/* and: Eric S. Raymond <esr@snark.thyrsus.com> */"
60 print "/* and: Thomas E. Dickey 1995-on */"
61 print "/****************************************************************************/"
62 print ""
63 print "/* $Id: MKterm.h.awk.in,v 1.85 2023/04/23 19:15:36 tom Exp $ */"
64 print ""
65 print "/*"
66 print "** term.h -- Definition of struct term"
67 print "*/"
68 print ""
69 print "#ifndef NCURSES_TERM_H_incl"
70 print "#define NCURSES_TERM_H_incl 1"
71 print ""
72 print "#undef NCURSES_VERSION"
73 print "#define NCURSES_VERSION \"@NCURSES_MAJOR@.@NCURSES_MINOR@\""
74 print ""
75 print "#include <ncurses_dll.h>"
76 print ""
77 print "#ifdef __cplusplus"
79 print "#endif"
80 print ""
81 print "/* Make this file self-contained by providing defaults for the HAVE_TERMIO[S]_H"
82 print " * definition (based on the system for which this was configured)."
83 print " */"
84 print ""
85 print "#ifndef __NCURSES_H"
86 print ""
87 print "typedef struct screen SCREEN;"
88 print ""
89 print "#if @NCURSES_SP_FUNCS@"
90 print "#undef NCURSES_SP_FUNCS"
91 print "#define NCURSES_SP_FUNCS @NCURSES_PATCH@"
92 print "#undef NCURSES_SP_NAME"
93 print "#define NCURSES_SP_NAME(name) name##_sp"
94 print ""
95 print "/* Define the sp-funcs helper function */"
96 print "#undef NCURSES_SP_OUTC"
97 print "#define NCURSES_SP_OUTC NCURSES_SP_NAME(NCURSES_OUTC)"
98 print "typedef int (*NCURSES_SP_OUTC)(SCREEN*, int);"
99 print "#endif"
100 print ""
101 print "#endif /* __NCURSES_H */"
102 print ""
103 print "#undef NCURSES_CONST"
104 print "#define NCURSES_CONST @NCURSES_CONST@"
105 print ""
106 print "#undef NCURSES_SBOOL"
107 print "#define NCURSES_SBOOL @NCURSES_SBOOL@"
108 print ""
109 print "#undef NCURSES_USE_DATABASE"
110 print "#define NCURSES_USE_DATABASE @NCURSES_USE_DATABASE@"
111 print ""
112 print "#undef NCURSES_USE_TERMCAP"
113 print "#define NCURSES_USE_TERMCAP @NCURSES_USE_TERMCAP@"
114 print ""
115 print "#undef NCURSES_XNAMES"
116 print "#define NCURSES_XNAMES @NCURSES_XNAMES@"
117 print ""
118 print "/* We will use these symbols to hide differences between"
119 print " * termios/termio/sgttyb interfaces."
120 print " */"
121 print "#undef TTY"
122 print "#undef SET_TTY"
123 print "#undef GET_TTY"
124 print ""
125 print "/* Assume POSIX termio if we have the header and function */"
126 print "/* #if HAVE_TERMIOS_H && HAVE_TCGETATTR */"
127 print "#if @HAVE_TERMIOS_H@ && @HAVE_TCGETATTR@"
128 print ""
129 print "#undef TERMIOS"
130 print "#define TERMIOS 1"
131 print ""
132 print "#include <termios.h>"
133 print "#define TTY struct termios"
134 print ""
135 print "#else /* !HAVE_TERMIOS_H */"
136 print ""
137 print "/* #if HAVE_TERMIO_H */"
138 print "#if @HAVE_TERMIO_H@"
139 print ""
140 print "#undef TERMIOS"
141 print "#define TERMIOS 1"
142 print ""
143 print "#include <termio.h>"
144 print "#define TTY struct termio"
145 print ""
146 print "#else /* !HAVE_TERMIO_H */"
147 print ""
148 print "#if (defined(_WIN32) || defined(_WIN64))"
149 print "#if @EXP_WIN32_DRIVER@"
150 print "#include <win32_curses.h>"
151 print "#define TTY struct winconmode"
152 print "#else"
153 print "#include <ncurses_mingw.h>"
154 print "#define TTY struct termios"
155 print "#endif"
156 print "#else"
157 print "#undef TERMIOS"
158 print "#include <sgtty.h>"
159 print "#include <sys/ioctl.h>"
160 print "#define TTY struct sgttyb"
161 print "#endif /* MINGW32 */"
162 print "#endif /* HAVE_TERMIO_H */"
163 print ""
164 print "#endif /* HAVE_TERMIOS_H */"
165 print ""
166 print "#ifdef TERMIOS"
167 print "#define GET_TTY(fd, buf) tcgetattr(fd, buf)"
168 print "#define SET_TTY(fd, buf) tcsetattr(fd, TCSADRAIN, buf)"
169 print "#elif @EXP_WIN32_DRIVER@ && (defined(_WIN32) || defined(_WIN64))"
170 print "#define GET_TTY(fd, buf) _nc_console_getmode(_nc_console_fd2handle(fd),buf)"
171 print "#define SET_TTY(fd, buf) _nc_console_setmode(_nc_console_fd2handle(fd),buf)"
172 print "#else"
173 print "#define GET_TTY(fd, buf) gtty(fd, buf)"
174 print "#define SET_TTY(fd, buf) stty(fd, buf)"
175 print "#endif"
176 print ""
177 print "#ifndef GCC_NORETURN"
178 print "#define GCC_NORETURN /* nothing */"
179 print "#endif"
180 print ""
181 print "#define NAMESIZE 256"
182 print ""
183 print "/* The cast works because TERMTYPE is the first data in TERMINAL */"
184 print "#define CUR ((TERMTYPE *)(cur_term))->"
185 print ""
189 print ""
193 print ""
194 print "/* older synonyms for some capabilities */"
195 print "#define beehive_glitch no_esc_ctlc"
196 print "#define teleray_glitch dest_tabs_magic_smso"
197 print ""
198 print "/* HPUX-11 uses this name rather than the standard one */"
199 print "#ifndef micro_char_size"
200 print "#define micro_char_size micro_col_size"
201 print "#endif"
202 print ""
203 print "#ifdef __INTERNAL_CAPS_VISIBLE"
228 print "#endif /* __INTERNAL_CAPS_VISIBLE */"
229 print ""
230 print ""
231 print "/*"
232 print " * Predefined terminfo array sizes"
233 print " */"
237 print ""
238 print "/* used by code for comparing entries */"
239 print "#define acs_chars_index ", acsindex
240 print ""
242 print ""
243 print "/*"
244 print " * The only reason these structures are visible is for read-only use."
245 print " * Programs which modify the data are not, never were, portable across"
246 print " * curses implementations."
247 print " *"
248 print " * The first field in TERMINAL is used in macros."
249 print " * The remaining fields are private."
250 print " */"
251 print "#ifdef NCURSES_INTERNALS"
252 print ""
253 print "#undef TERMINAL"
254 print "#define TERMINAL struct term"
255 print "TERMINAL;"
256 print ""
260 print "#undef TERMTYPE2"
261 print "#define TERMTYPE2 TERMTYPE"
263 print "#else"
264 print ""
265 print "typedef struct term { /* describe an actual terminal */"
266 print " TERMTYPE type; /* terminal type description */"
267 print "} TERMINAL;"
268 print ""
269 print "#endif /* NCURSES_INTERNALS */"
270 print ""
271 print ""
272 print "#if @BROKEN_LINKER@ && !@cf_cv_enable_reentrant@"
273 print "extern NCURSES_EXPORT_VAR(TERMINAL *) cur_term;"
274 print "#elif @cf_cv_enable_reentrant@"
275 print "NCURSES_WRAPPED_VAR(TERMINAL *, cur_term);"
276 print "#define cur_term NCURSES_PUBLIC_VAR(cur_term())"
277 print "#else"
278 print "extern NCURSES_EXPORT_VAR(TERMINAL *) cur_term;"
279 print "#endif"
280 print ""
281 print "#if @BROKEN_LINKER@ || @cf_cv_enable_reentrant@"
282 print "NCURSES_WRAPPED_VAR(NCURSES_CONST char * const *, boolnames);"
283 print "NCURSES_WRAPPED_VAR(NCURSES_CONST char * const *, boolcodes);"
284 print "NCURSES_WRAPPED_VAR(NCURSES_CONST char * const *, boolfnames);"
285 print "NCURSES_WRAPPED_VAR(NCURSES_CONST char * const *, numnames);"
286 print "NCURSES_WRAPPED_VAR(NCURSES_CONST char * const *, numcodes);"
287 print "NCURSES_WRAPPED_VAR(NCURSES_CONST char * const *, numfnames);"
288 print "NCURSES_WRAPPED_VAR(NCURSES_CONST char * const *, strnames);"
289 print "NCURSES_WRAPPED_VAR(NCURSES_CONST char * const *, strcodes);"
290 print "NCURSES_WRAPPED_VAR(NCURSES_CONST char * const *, strfnames);"
291 print ""
292 print "#define boolnames NCURSES_PUBLIC_VAR(boolnames())"
293 print "#define boolcodes NCURSES_PUBLIC_VAR(boolcodes())"
294 print "#define boolfnames NCURSES_PUBLIC_VAR(boolfnames())"
295 print "#define numnames NCURSES_PUBLIC_VAR(numnames())"
296 print "#define numcodes NCURSES_PUBLIC_VAR(numcodes())"
297 print "#define numfnames NCURSES_PUBLIC_VAR(numfnames())"
298 print "#define strnames NCURSES_PUBLIC_VAR(strnames())"
299 print "#define strcodes NCURSES_PUBLIC_VAR(strcodes())"
300 print "#define strfnames NCURSES_PUBLIC_VAR(strfnames())"
301 print ""
302 print "#else"
303 print ""
304 print "extern NCURSES_EXPORT_VAR(NCURSES_CONST char * const ) boolnames[];"
305 print "extern NCURSES_EXPORT_VAR(NCURSES_CONST char * const ) boolcodes[];"
306 print "extern NCURSES_EXPORT_VAR(NCURSES_CONST char * const ) boolfnames[];"
307 print "extern NCURSES_EXPORT_VAR(NCURSES_CONST char * const ) numnames[];"
308 print "extern NCURSES_EXPORT_VAR(NCURSES_CONST char * const ) numcodes[];"
309 print "extern NCURSES_EXPORT_VAR(NCURSES_CONST char * const ) numfnames[];"
310 print "extern NCURSES_EXPORT_VAR(NCURSES_CONST char * const ) strnames[];"
311 print "extern NCURSES_EXPORT_VAR(NCURSES_CONST char * const ) strcodes[];"
312 print "extern NCURSES_EXPORT_VAR(NCURSES_CONST char * const ) strfnames[];"
313 print ""
314 print "#endif"
315 print ""
316 print "/*"
317 print " * These entrypoints are used only by the ncurses utilities such as tic."
318 print " */"
319 print "#ifdef NCURSES_INTERNALS"
320 print ""
321 print "extern NCURSES_EXPORT(int) _nc_set_tty_mode (TTY *buf);"
322 …print "extern NCURSES_EXPORT(int) _nc_read_entry2 (const char * const, char * const, TERMTYPE2 *c…
323 print "extern NCURSES_EXPORT(int) _nc_read_file_entry (const char *const, TERMTYPE2 *);"
324 print "extern NCURSES_EXPORT(int) _nc_read_termtype (TERMTYPE2 *, char *, int);"
325 print "extern NCURSES_EXPORT(char *) _nc_first_name (const char *const);"
326 …print "extern NCURSES_EXPORT(int) _nc_name_match (const char *const, const char *const, const cha…
327 print "extern NCURSES_EXPORT(char *) _nc_tiparm(int, const char *, ...);"
328 print "extern NCURSES_EXPORT(const TERMTYPE *) _nc_fallback (const char *);"
329 …print "extern NCURSES_EXPORT(int) _nc_read_entry (const char * const, char * const, TERMTYPE *con…
330 print ""
331 print "#endif /* NCURSES_INTERNALS */"
332 print ""
333 print "/*"
334 print " * Normal entry points"
335 print " */"
336 print "extern NCURSES_EXPORT(TERMINAL *) set_curterm (TERMINAL *);"
337 print "extern NCURSES_EXPORT(int) del_curterm (TERMINAL *);"
338 print ""
339 print "/* miscellaneous entry points */"
340 print "extern NCURSES_EXPORT(int) restartterm (NCURSES_CONST char *, int, int *);"
341 print "extern NCURSES_EXPORT(int) setupterm (const char *,int,int *);"
342 print ""
343 print "/* terminfo entry points, also declared in curses.h */"
344 print "#if !defined(__NCURSES_H)"
345 print "extern NCURSES_EXPORT(char *) tigetstr (const char *);"
346 print "extern NCURSES_EXPORT_VAR(char) ttytype[];"
347 print "extern NCURSES_EXPORT(int) putp (const char *);"
348 print "extern NCURSES_EXPORT(int) tigetflag (const char *);"
349 print "extern NCURSES_EXPORT(int) tigetnum (const char *);"
350 print ""
351 print "#if @NCURSES_TPARM_VARARGS@ /* NCURSES_TPARM_VARARGS */"
352 print "extern NCURSES_EXPORT(char *) tparm (const char *, ...); /* special */"
353 print "#else"
354 …print "extern NCURSES_EXPORT(char *) tparm (const char *, long,long,long,long,long,long,long,long…
355 print "#endif"
356 print ""
357 print "extern NCURSES_EXPORT(char *) tiparm (const char *, ...); /* special */"
358 print "extern NCURSES_EXPORT(char *) tiparm_s (int, int, const char *, ...); /* special */"
359 print "extern NCURSES_EXPORT(int) tiscan_s (int *, int *, const char *); /* special */"
360 print ""
361 print "#endif /* __NCURSES_H */"
362 print ""
363 print "/* termcap database emulation (XPG4 uses const only for 2nd param of tgetent) */"
364 print "#if !defined(NCURSES_TERMCAP_H_incl)"
365 print "extern NCURSES_EXPORT(char *) tgetstr (const char *, char **);"
366 print "extern NCURSES_EXPORT(char *) tgoto (const char *, int, int);"
367 print "extern NCURSES_EXPORT(int) tgetent (char *, const char *);"
368 print "extern NCURSES_EXPORT(int) tgetflag (const char *);"
369 print "extern NCURSES_EXPORT(int) tgetnum (const char *);"
370 print "extern NCURSES_EXPORT(int) tputs (const char *, int, int (*)(int));"
371 print "#endif /* NCURSES_TERMCAP_H_incl */"
372 print ""
373 print "/*"
374 print " * Include curses.h before term.h to enable these extensions."
375 print " */"
376 print "#if defined(NCURSES_SP_FUNCS) && (NCURSES_SP_FUNCS != 0)"
377 print ""
378 print "extern NCURSES_EXPORT(char *) NCURSES_SP_NAME(tigetstr) (SCREEN*, const char *);"
379 print "extern NCURSES_EXPORT(int) NCURSES_SP_NAME(putp) (SCREEN*, const char *);"
380 print "extern NCURSES_EXPORT(int) NCURSES_SP_NAME(tigetflag) (SCREEN*, const char *);"
381 print "extern NCURSES_EXPORT(int) NCURSES_SP_NAME(tigetnum) (SCREEN*, const char *);"
382 print ""
383 print "#if @NCURSES_TPARM_VARARGS@ /* NCURSES_TPARM_VARARGS */"
384 …print "extern NCURSES_EXPORT(char *) NCURSES_SP_NAME(tparm) (SCREEN*, const char *, ...); /* spe…
385 print "#else"
386 …print "extern NCURSES_EXPORT(char *) NCURSES_SP_NAME(tparm) (SCREEN*, const char *, long,long,lo…
387 print "#endif"
388 print ""
389 print "/* termcap database emulation (XPG4 uses const only for 2nd param of tgetent) */"
390 print "extern NCURSES_EXPORT(char *) NCURSES_SP_NAME(tgetstr) (SCREEN*, const char *, char **);"
391 print "extern NCURSES_EXPORT(char *) NCURSES_SP_NAME(tgoto) (SCREEN*, const char *, int, int);"
392 print "extern NCURSES_EXPORT(int) NCURSES_SP_NAME(tgetent) (SCREEN*, char *, const char *);"
393 print "extern NCURSES_EXPORT(int) NCURSES_SP_NAME(tgetflag) (SCREEN*, const char *);"
394 print "extern NCURSES_EXPORT(int) NCURSES_SP_NAME(tgetnum) (SCREEN*, const char *);"
395 …print "extern NCURSES_EXPORT(int) NCURSES_SP_NAME(tputs) (SCREEN*, const char *, int, NCURSES…
396 print ""
397 print "extern NCURSES_EXPORT(TERMINAL *) NCURSES_SP_NAME(set_curterm) (SCREEN*, TERMINAL *);"
398 print "extern NCURSES_EXPORT(int) NCURSES_SP_NAME(del_curterm) (SCREEN*, TERMINAL *);"
399 print ""
400 …print "extern NCURSES_EXPORT(int) NCURSES_SP_NAME(restartterm) (SCREEN*, NCURSES_CONST char *…
401 print "#endif /* NCURSES_SP_FUNCS */"
402 print ""
403 print "/*"
404 print " * Debugging features."
405 print " */"
406 print "extern GCC_NORETURN NCURSES_EXPORT(void) exit_terminfo(int);"
407 print ""
408 print "#ifdef __cplusplus"
410 print "#endif"
411 print ""
412 print "#endif /* NCURSES_TERM_H_incl */"