added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / rom / devs / input / addnullevent.c
blobfe430d196eb75b91ea144920cdb113b49895a754
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: AROS specific Input device function AddNullEvent()
6 Lang: english
7 */
9 #include <proto/exec.h>
10 #include "input_intern.h"
12 #define InputDevice ((struct inputbase *)InputBase)
14 /*****************************************************************************
16 NAME */
17 #include <clib/input_protos.h>
19 AROS_LH0(void, AddNullEvent,
21 /* SYNOPSIS */
22 /* void */
24 /* LOCATION */
25 struct Device *, InputBase, 20, Input)
27 /* FUNCTION
29 INPUTS
31 RESULT
33 NOTES
35 EXAMPLE
37 BUGS
39 SEE ALSO
41 INTERNALS
43 HISTORY
45 *****************************************************************************/
47 AROS_LIBFUNC_INIT
49 if (InputDevice->InputTask)
51 Signal(InputDevice->InputTask, SIGBREAKF_CTRL_F);
54 AROS_LIBFUNC_EXIT
55 } /* AddNullEvent */