Changes in uspace/srv/hid/input/layout.h [453c5ce:28a5ebd] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/input/layout.h
r453c5ce r28a5ebd 53 53 errno_t (*create)(layout_t *); 54 54 void (*destroy)(layout_t *); 55 wchar_t (*parse_ev)(layout_t *, kbd_event_t *);55 char32_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 wchar_t layout_parse_ev(layout_t *, kbd_event_t *);66 extern char32_t layout_parse_ev(layout_t *, kbd_event_t *); 67 67 68 68 #endif
Note:
See TracChangeset
for help on using the changeset viewer.