/*  KeyCodes.H - standard RawKeyCodes
**  (C) Copyright 1991 by O.Bausch                    All Rights Reserved.
**
**
**  Release Notes:
**  - Creation          : Mar 14, 1991
**  - Last Modification : Mar 14, 1991
**
**  Version Notes:
**  - 0.00 - Mar 14, 1991
**
**  Change History:
**  - Mar 14, 1991 (/ob):
**     - File creation
**
**  Bugs and limitations:
**  - None.
**
*************************************************************************/
#ifndef KEYCODES_H
#define KEYCODES_H
/************************************************************************/
/* include files
 */
#include <intuition/intuition.h>	/* there are already some definitions	*/

/************************************************************************/
/* RAWKEY Codes
 */
#define KEYCODE_W			0x11
#define KEYCODE_E			0x12
#define KEYCODE_R			0x13
#define KEYCODE_T			0x14
#define KEYCODE_Y			0x15
#define KEYCODE_U			0x16
#define KEYCODE_I			0x17
#define KEYCODE_O			0x18
#define KEYCODE_P			0x19

#define KEYCODE_A			0x20
#define KEYCODE_S			0x21
#define KEYCODE_D			0x22
#define KEYCODE_F			0x23
#define KEYCODE_G			0x24
#define KEYCODE_H			0x25
#define KEYCODE_J			0x26
#define KEYCODE_K			0x27
#define KEYCODE_L			0x28

#define KEYCODE_C			0x33
#define KEYCODE_ENTER	0x44
#define KEYCODE_HELP		0x5f

/************************************************************************/
#endif	/* KEYCODES_H */
/************************************************************************/
