Support rastport clipping rectangle for layerless rastports
[tangerine.git] / rom / exec / rawmaygetchar.c
blob35eeee9977e14b8400570292b7c805b6da906138
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Check if there is a character on the raw console
6 Lang: english
7 */
9 /*****i***********************************************************************
11 NAME */
12 #include <proto/exec.h>
14 AROS_LH0(LONG, RawMayGetChar,
16 /* LOCATION */
17 struct ExecBase *, SysBase, 85, Exec)
19 /* FUNCTION
20 Check if there is a character on the raw console.
22 INPUTS
23 None.
25 RESULT
26 The character or -1 if there was none.
28 NOTES
29 This function is for very low level debugging only.
31 EXAMPLE
33 BUGS
35 SEE ALSO
36 RawIOInit(), RawPutChar(), RawMayGetChar()
38 INTERNALS
40 *****************************************************************************/
42 AROS_LIBFUNC_INIT
43 AROS_LIBBASE_EXT_DECL(struct ExecBase *,SysBase)
45 return -1;
46 AROS_LIBFUNC_EXIT
47 } /* RawMayGetChar */