Ignore:
Timestamp:
2019-05-12T15:03:14Z (5 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
8f16ede6
Parents:
cb9313e
git-author:
Matthieu Riolo <matthieu.riolo@…> (2019-05-12 13:37:28)
git-committer:
Matthieu Riolo <matthieu.riolo@…> (2019-05-12 15:03:14)
Message:

Adding makefiles which build the layouts as dynamic library. All *.c files addedd to the directory uspace/srv/hid/input/layout will be treated as such

File:
1 edited

Legend:

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

    rcb9313e r3e1bc35  
    5353};
    5454
     55#else
     56
     57layout_ops_t get_layout(void);
     58layout_ops_t get_layout(void) {
     59        layout_ops_t layout_default = {
     60                .create = us_dvorak_create,
     61                .destroy = us_dvorak_destroy,
     62                .parse_ev = us_dvorak_parse_ev
     63        };
     64        return layout_default;
     65}
     66
    5567#endif
    5668
Note: See TracChangeset for help on using the changeset viewer.