Changeset d1eece6 in mainline for uspace/srv/kbd/ctl
- Timestamp:
- 2009-02-19T22:54:32Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 013c4d6
- Parents:
- 91825d90
- Location:
- uspace/srv/kbd/ctl
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/kbd/ctl/gxe_fb.c
r91825d90 rd1eece6 203 203 } 204 204 205 kbd_push_ev(KE_PRESS, KC_ESCAPE , 0);205 kbd_push_ev(KE_PRESS, KC_ESCAPE); 206 206 } 207 207 -
uspace/srv/kbd/ctl/pc.c
r91825d90 rd1eece6 60 60 key = scanmap_simple[scancode]; 61 61 if (key != 0) 62 kbd_push_ev(type, key , 0);62 kbd_push_ev(type, key); 63 63 } 64 64 -
uspace/srv/kbd/ctl/stty.c
r91825d90 rd1eece6 213 213 } 214 214 215 kbd_push_ev(KE_PRESS, KC_ESCAPE , 0);215 kbd_push_ev(KE_PRESS, KC_ESCAPE); 216 216 } 217 217 … … 253 253 key = map[scancode]; 254 254 if (key != 0) 255 kbd_push_ev(KE_PRESS, key , 0);255 kbd_push_ev(KE_PRESS, key); 256 256 } 257 257 -
uspace/srv/kbd/ctl/sun.c
r91825d90 rd1eece6 66 66 key = scanmap_simple[scancode]; 67 67 if (key != 0) 68 kbd_push_ev(type, key , 0);68 kbd_push_ev(type, key); 69 69 } 70 70
Note:
See TracChangeset
for help on using the changeset viewer.