move VMWare SVGA driver to generic location
[AROS.git] / rom / exec / rawmaygetchar.c
blob86031314155db568bc58c8f051bccc6dcbdcec36
1 /*
2 Copyright © 1995-2007, 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
44 return -1;
45 AROS_LIBFUNC_EXIT
46 } /* RawMayGetChar */