2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
5 Desc: console.device function RawKeyConvert()
9 #include <exec/libraries.h>
10 #include <devices/inputevent.h>
11 #include <devices/keymap.h>
12 #include <proto/console.h>
15 /*****************************************************************************
18 #include <devices/keymap.h>
19 #include <proto/console.h>
20 #include <proto/keymap.h>
21 #include "console_gcc.h"
23 AROS_LH4(LONG
, RawKeyConvert
,
26 AROS_LHA(struct InputEvent
*, events
, A0
),
27 AROS_LHA(STRPTR
, buffer
, A1
),
28 AROS_LHA(LONG
, length
, D1
), AROS_LHA(struct KeyMap
*, keyMap
, A2
),
31 struct Library
*, ConsoleDevice
, 8, Console
)
49 *****************************************************************************/
53 return MapRawKey(events
, buffer
, length
, keyMap
);