Changeset cb9313e in mainline for uspace/srv/hid/input/layout/cz.c


Ignore:
Timestamp:
2019-05-12T15:02:29Z (5 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
3e1bc35
Parents:
1e8b633
git-author:
Matthieu Riolo <matthieu.riolo@…> (2019-05-12 05:41:53)
git-committer:
Matthieu Riolo <matthieu.riolo@…> (2019-05-12 15:02:29)
Message:

Adding a configuration flag which allows to define which is
the default keyboard layout

This commit adds a new configuration flag which defines the
default keyboard layout. This layout will be hardcoded into
the system. Changing to this keyboard layout can be done by
pressing CTRL+F1.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/input/layout/cz.c

    r1e8b633 rcb9313e  
    5757} layout_cz_t;
    5858
    59 layout_ops_t cz_ops = {
     59#ifdef CONFIG_KB_LAYOUT_us_qwerty
     60
     61layout_ops_t layout_default = {
    6062        .create = cz_create,
    6163        .destroy = cz_destroy,
    6264        .parse_ev = cz_parse_ev
    6365};
     66
     67#endif
    6468
    6569static wchar_t map_lcase[] = {
Note: See TracChangeset for help on using the changeset viewer.