1 #ifndef CLIB_CONSOLE_PROTOS_H 2 #define CLIB_CONSOLE_PROTOS_H 3 4 /* 5 console.device C prototypes 6 7 Copyright © 2002 The MorphOS Development Team, All Rights Reserved. 8 */ 9 10 #ifndef EXEC_LIBRARIES_H 11 # include <exec/libraries.h> 12 #endif 13 14 #ifndef DEVICES_INPUTEVENT_H 15 # include <devices/inputevent.h> 16 #endif 17 18 #ifndef DEVICES_KEYMAP_H 19 # include <devices/keymap.h> 20 #endif 21 22 23 #ifdef __cplusplus 24 extern "C" { 25 #endif /* __cplusplus */ 26 27 struct InputEvent *CDInputHandler( CONST struct InputEvent *events, struct Library *consoleDevice ); 28 LONG RawKeyConvert( CONST struct InputEvent *events, STRPTR buffer, LONG length, CONST struct KeyMap *keyMap ); 29 30 31 #ifdef __cplusplus 32 } 33 #endif /* __cplusplus */ 34 35 36 #endif /* CLIB_CONSOLE_PROTOS_H */