25 lines
567 B
C
25 lines
567 B
C
/**
|
|
* \file
|
|
* \brief Event to ASCII key mapping
|
|
*/
|
|
/*
|
|
* (c) 2009 Adam Lackorzynski <adam@os.inf.tu-dresden.de>
|
|
* economic rights: Technische Universität Dresden (Germany)
|
|
* This file is part of TUD:OS and distributed under the terms of the
|
|
* GNU Lesser General Public License 2.1.
|
|
* Please see the COPYING-LGPL-2.1 file for details.
|
|
*/
|
|
#ifndef __L4UTIL__KEYMAP_H__
|
|
#define __L4UTIL__KEYMAP_H__
|
|
|
|
#include <l4/sys/compiler.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
int l4util_map_event_to_keymap(unsigned value, unsigned shift);
|
|
|
|
__END_DECLS
|
|
|
|
|
|
#endif /* __L4UTIL__KEYMAP_H__ */
|