Changes in uspace/srv/hid/input/layout.h [28a5ebd:453c5ce] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/input/layout.h
r28a5ebd r453c5ce 53 53 errno_t (*create)(layout_t *); 54 54 void (*destroy)(layout_t *); 55 char32_t (*parse_ev)(layout_t *, kbd_event_t *);55 wchar_t (*parse_ev)(layout_t *, kbd_event_t *); 56 56 } layout_ops_t; 57 57 … … 64 64 extern layout_t *layout_create(layout_ops_t *); 65 65 extern void layout_destroy(layout_t *); 66 extern char32_t layout_parse_ev(layout_t *, kbd_event_t *);66 extern wchar_t layout_parse_ev(layout_t *, kbd_event_t *); 67 67 68 68 #endif
Note:
See TracChangeset
for help on using the changeset viewer.