Changes in uspace/lib/c/generic/io/console.c [96b02eb9:9f1362d4] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/console.c
r96b02eb9 r9f1362d4 45 45 } 46 46 47 int console_get_size(int phone, sysarg_t *cols, sysarg_t *rows)47 int console_get_size(int phone, ipcarg_t *cols, ipcarg_t *rows) 48 48 { 49 49 return async_req_0_2(phone, CONSOLE_GET_SIZE, cols, rows); … … 71 71 } 72 72 73 int console_get_color_cap(int phone, sysarg_t *ccap)73 int console_get_color_cap(int phone, ipcarg_t *ccap) 74 74 { 75 75 return async_req_0_1(phone, CONSOLE_GET_COLOR_CAP, ccap); … … 81 81 } 82 82 83 int console_get_pos(int phone, sysarg_t *col, sysarg_t *row)83 int console_get_pos(int phone, ipcarg_t *col, ipcarg_t *row) 84 84 { 85 85 return async_req_0_2(phone, CONSOLE_GET_POS, col, row); 86 86 } 87 87 88 void console_set_pos(int phone, sysarg_t col, sysarg_t row)88 void console_set_pos(int phone, ipcarg_t col, ipcarg_t row) 89 89 { 90 90 async_msg_2(phone, CONSOLE_GOTO, col, row); … … 93 93 bool console_get_event(int phone, console_event_t *event) 94 94 { 95 sysarg_t type;96 sysarg_t key;97 sysarg_t mods;98 sysarg_t c;95 ipcarg_t type; 96 ipcarg_t key; 97 ipcarg_t mods; 98 ipcarg_t c; 99 99 100 100 int rc = async_req_0_4(phone, CONSOLE_GET_EVENT, &type, &key, &mods, &c);
Note:
See TracChangeset
for help on using the changeset viewer.