Rev 4153 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4153 | Rev 4263 | ||
---|---|---|---|
Line 36... | Line 36... | ||
36 | 36 | ||
37 | #ifndef KBD_LAYOUT_H_ |
37 | #ifndef KBD_LAYOUT_H_ |
38 | #define KBD_LAYOUT_H_ |
38 | #define KBD_LAYOUT_H_ |
39 | 39 | ||
40 | #include <kbd/kbd.h> |
40 | #include <kbd/kbd.h> |
- | 41 | #include <sys/types.h> |
|
41 | 42 | ||
- | 43 | typedef struct { |
|
42 | extern char layout_parse_ev(kbd_event_t *); |
44 | wchar_t (*parse_ev)(kbd_event_t *); |
- | 45 | } layout_op_t; |
|
- | 46 | ||
- | 47 | extern layout_op_t us_qwerty_op; |
|
- | 48 | extern layout_op_t us_dvorak_op; |
|
- | 49 | extern layout_op_t cz_op; |
|
43 | 50 | ||
44 | #endif |
51 | #endif |
45 | 52 | ||
46 | /** |
53 | /** |
47 | * @} |
54 | * @} |