Changeset 7bf29e5 in mainline for uspace/lib/console/src/console.c
- Timestamp:
- 2025-01-09T11:29:38Z (5 months ago)
- Children:
- a5c2960e
- Parents:
- bc3d695 (diff), 4e1221c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/console/src/console.c
rbc3d695 r7bf29e5 193 193 event->ev.key.mods = ipc_get_arg4(call); 194 194 event->ev.key.c = ipc_get_arg5(call); 195 break;195 return EOK; 196 196 case CEV_POS: 197 197 event->ev.pos.pos_id = ipc_get_arg2(call) >> 16; … … 200 200 event->ev.pos.hpos = ipc_get_arg4(call); 201 201 event->ev.pos.vpos = ipc_get_arg5(call); 202 break;203 default:204 return E IO;205 } 206 207 return E OK;202 return EOK; 203 case CEV_RESIZE: 204 return EOK; 205 } 206 207 return EIO; 208 208 } 209 209
Note:
See TracChangeset
for help on using the changeset viewer.