added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / compiler / include / devices / input.h
blob21e791ac0b75328e6373514fcddaba7f9e5406d6
1 #ifndef DEVICES_INPUT_H
2 #define DEVICES_INPUT_H
4 /*
5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc: Input device commands
9 Lang: english
12 #ifndef EXEC_IO_H
13 # include <exec/io.h>
14 #endif
16 #define IND_ADDHANDLER (CMD_NONSTD + 0)
17 #define IND_REMHANDLER (CMD_NONSTD + 1)
18 #define IND_WRITEEVENT (CMD_NONSTD + 2)
19 #define IND_SETTHRESH (CMD_NONSTD + 3)
20 #define IND_SETPERIOD (CMD_NONSTD + 4)
21 #define IND_SETMPORT (CMD_NONSTD + 5)
22 #define IND_SETMTYPE (CMD_NONSTD + 6)
23 #define IND_SETMTRIG (CMD_NONSTD + 7)
25 #define IND_ADDEVENT (CMD_NONSTD + 15) /* V50! */
27 #endif /* DEVICES_INPUT_H */