Changeset 3e1bc35 in mainline for uspace/srv/hid/input/layout/ar.c


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/ar.c

    rcb9313e r3e1bc35  
    5454};
    5555
     56#else
     57
     58layout_ops_t get_layout(void);
     59layout_ops_t get_layout(void) {
     60        layout_ops_t layout_default = {
     61                .create = ar_create,
     62                .destroy = ar_destroy,
     63                .parse_ev = ar_parse_ev
     64        };
     65        return layout_default;
     66}
     67
    5668#endif
    5769
Note: See TracChangeset for help on using the changeset viewer.