1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
.\" $OpenBSD: define_key.3,v 1.1 1997/12/14 23:15:44 millert Exp $
.\"*****************************************************************************
.\" Copyright 1997 by Thomas E. Dickey <dickey@clark.net> *
.\" All Rights Reserved. *
.\" *
.\" Permission to use, copy, modify, and distribute this software and its *
.\" documentation for any purpose and without fee is hereby granted, provided *
.\" that the above copyright notice appear in all copies and that both that *
.\" copyright notice and this permission notice appear in supporting *
.\" documentation, and that the name of the above listed copyright holder(s) *
.\" not be used in advertising or publicity pertaining to distribution of the *
.\" software without specific, written prior permission. THE ABOVE LISTED *
.\" COPYRIGHT HOLDER(S) DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, *
.\" INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO *
.\" EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY *
.\" SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER *
.\" RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF *
.\" CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN *
.\" CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. *
.\"*****************************************************************************
.\" Id: define_key.3x,v 1.3 1997/12/14 01:41:00 tom Exp $
.TH define_key 3 ""
.
.SH NAME
\fBdefine_key\fP \- define a keycode
.
.SH SYNOPSIS
\fB#include <curses.h>\fP
\fBint define_key(char *definition, int keycode);\fP
.
.SH DESCRIPTION
This is an extension to the curses library.
It permits an application to define keycodes with their corresponding control
strings, so that the curses library will interpret them just as it would
the predefined codes in the terminfo database.
.PP
If the given string is null, any existing definition for the keycode is
removed.
.
.SH RETURN VALUE
The keycode must be greater than zero, else ERR is returned.
.
.SH PORTABILITY
These routines are specific to ncurses. They were not supported on
Version 7, BSD or System V implementations. It is recommended that
any code depending on them be conditioned using NCURSES_VERSION.
.
.SH SEE ALSO
\fBkeyok\fR(3).
.
.SH AUTHOR
Thomas Dickey.
.\"#
.\"# The following sets edit modes for GNU EMACS
.\"# Local Variables:
.\"# mode:nroff
.\"# fill-column:79
.\"# End:
|