Changes in uspace/lib/console/src/console.c [69c376b5:899bdfd] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/console/src/console.c
r69c376b5 r899bdfd 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.