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