193139Sru/* key.h -- Structure associating function names with numeric codes. */
293139Sru
393139Sru/* This file is part of GNU Info, a program for reading online documentation
493139Sru   stored in Info format.
593139Sru
693139Sru   Copyright (C) 1993 Free Software Foundation, Inc.
793139Sru
893139Sru   This program is free software; you can redistribute it and/or modify
993139Sru   it under the terms of the GNU General Public License as published by
1093139Sru   the Free Software Foundation; either version 2, or (at your option)
1193139Sru   any later version.
1293139Sru
1393139Sru   This program is distributed in the hope that it will be useful,
1493139Sru   but WITHOUT ANY WARRANTY; without even the implied warranty of
1593139Sru   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1693139Sru   GNU General Public License for more details.
1793139Sru
1893139Sru   You should have received a copy of the GNU General Public License
1993139Sru   along with this program; if not, write to the Free Software
2093139Sru   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
2193139Sru
2293139Sru   Written by Andrew Bettison <andrewb@zip.com.au> */
2393139Sru
2493139Sru#if !defined (KEY_H)
2593139Sru#define KEY_H
2693139Sru
2793139Srutypedef struct {
2893139Sru	char *name;
2993139Sru	unsigned char	code;
3093139Sru}
3193139Sru	FUNCTION_KEY;
3293139Sru
3393139Sruextern FUNCTION_KEY function_key_array[];
3493139Sru
3593139Sru#endif /* !KEY_H */
36