Fixed capitalisation typo.
[AROS.git] / rom / devs / console / rawkeyconvert.c
blob1ec395e1a233196d93b030359b665288543fcc0c
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: console.device function RawKeyConvert()
6 Lang: english
7 */
8 #include <exec/libraries.h>
9 #include <devices/inputevent.h>
10 #include <devices/keymap.h>
11 #include <proto/console.h>
14 /*****************************************************************************
16 NAME */
17 #include <devices/keymap.h>
18 #include <proto/console.h>
19 #include <proto/keymap.h>
20 #include "console_gcc.h"
22 AROS_LH4(LONG, RawKeyConvert,
24 /* SYNOPSIS */
25 AROS_LHA(struct InputEvent *, events, A0),
26 AROS_LHA(STRPTR , buffer, A1),
27 AROS_LHA(LONG , length, D1),
28 AROS_LHA(struct KeyMap *, keyMap, A2),
30 /* LOCATION */
31 struct Library *, ConsoleDevice, 8, Console)
33 /* FUNCTION
35 INPUTS
37 RESULT
39 NOTES
41 EXAMPLE
43 BUGS
45 SEE ALSO
47 INTERNALS
49 HISTORY
50 29-10-95 digulla automatically created from
53 *****************************************************************************/
55 AROS_LIBFUNC_INIT
57 return MapRawKey(events, buffer, length, keyMap);
59 AROS_LIBFUNC_EXIT
60 } /* RawKeyConvert */