Changeset 2f7a564 in mainline for uspace/srv/hid/input/include/kbd.h
- Timestamp:
- 2011-06-13T22:05:30Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ef15fbb
- Parents:
- a07a454
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/input/include/kbd.h
ra07a454 r2f7a564 47 47 struct kbd_port_ops; 48 48 struct kbd_ctl_ops; 49 struct layout; 49 50 50 51 typedef struct kbd_dev { … … 63 64 /** Controller-private data */ 64 65 void *ctl_private; 66 67 /** Currently active modifiers. */ 68 unsigned mods; 69 70 /** Currently pressed lock keys. We track these to tackle autorepeat. */ 71 unsigned lock_keys; 72 73 /** Active keyboard layout */ 74 struct layout *active_layout; 65 75 } kbd_dev_t; 66 76
Note:
See TracChangeset
for help on using the changeset viewer.