Changes in uspace/lib/console/src/console.c [69c376b5:d0dfbba] in mainline
- File:
-
- 1 edited
-
uspace/lib/console/src/console.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/console/src/console.c
r69c376b5 rd0dfbba 1 1 /* 2 * Copyright (c) 202 4Jiri Svoboda2 * Copyright (c) 2026 Jiri Svoboda 3 3 * Copyright (c) 2006 Josef Cejka 4 4 * Copyright (c) 2006 Jakub Vana … … 45 45 #include <io/console.h> 46 46 #include <ipc/console.h> 47 #include "../private/console.h" 47 48 48 49 console_ctrl_t *console_init(FILE *ifile, FILE *ofile) … … 193 194 event->ev.key.mods = ipc_get_arg4(call); 194 195 event->ev.key.c = ipc_get_arg5(call); 195 break;196 return EOK; 196 197 case CEV_POS: 197 198 event->ev.pos.pos_id = ipc_get_arg2(call) >> 16; … … 200 201 event->ev.pos.hpos = ipc_get_arg4(call); 201 202 event->ev.pos.vpos = ipc_get_arg5(call); 202 break;203 default:204 return E IO;205 } 206 207 return E OK;203 return EOK; 204 case CEV_RESIZE: 205 return EOK; 206 } 207 208 return EIO; 208 209 } 209 210
Note:
See TracChangeset
for help on using the changeset viewer.
