Changeset eb522e8 in mainline for uspace/lib/c/generic/io/console.c
- Timestamp:
- 2011-06-01T08:43:42Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8d6c1f1
- Parents:
- 9e2e715 (diff), e51a514 (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/c/generic/io/console.c
r9e2e715 reb522e8 45 45 } 46 46 47 int console_get_size(int phone, ipcarg_t *cols, ipcarg_t *rows)47 int console_get_size(int phone, sysarg_t *cols, sysarg_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, ipcarg_t *ccap)73 int console_get_color_cap(int phone, sysarg_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, ipcarg_t *col, ipcarg_t *row)83 int console_get_pos(int phone, sysarg_t *col, sysarg_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, ipcarg_t col, ipcarg_t row)88 void console_set_pos(int phone, sysarg_t col, sysarg_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 ipcarg_t type;96 ipcarg_t key;97 ipcarg_t mods;98 ipcarg_t c;95 sysarg_t type; 96 sysarg_t key; 97 sysarg_t mods; 98 sysarg_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.