/*
 * CDDL HEADER START
 *
 * The contents of this file are subject to the terms of the
 * Common Development and Distribution License (the "Licence").
 * You may not use this file except in compliance with the Licence.
 *
 * You can obtain a copy of the licence at RISC OS path @.^.LICENCE
 * or  http://www.riscosdev.com/lanman98/LICENCE.CDDL
 * See the Licence for the specific language governing permissions
 * and limitations under the Licence.
 *
 * When distributing Covered Code, include this CDDL HEADER in each
 * file and include the Licence file. If applicable, add the
 * following below this CDDL HEADER, with the fields enclosed by
 * brackets "[]" replaced with your own identifying information:
 * Portions Copyright [yyyy] [name of copyright owner]
 *
 * CDDL HEADER END
 */
 
/*
 *   Portions Copyright 1996 Warm Silence Software Ltd.
 */

#ifndef _KEYS_
#define _KEYS_

#define KEY_ESC (0x1B)
#define KEY_F1  (0x181)
#define KEY_F2  (0x182)
#define KEY_F3  (0x183)
#define KEY_F4  (0x184)
#define KEY_F5  (0x185)
#define KEY_F6  (0x186)
#define KEY_F7  (0x187)
#define KEY_F8  (0x188)
#define KEY_SF1  (0x191)
#define KEY_SF2  (0x192)
#define KEY_SF3  (0x193)
#define KEY_SF4  (0x194)
#define KEY_SF5  (0x195)
#define KEY_SF6  (0x196)
#define KEY_SF7  (0x197)
#define KEY_SF8  (0x198)

#endif

