Changes in uspace/srv/hid/output/ctl/serial.c [28a5ebd:4122410] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/output/ctl/serial.c
r28a5ebd r4122410 57 57 vt100_goto(state, col, row); 58 58 vt100_set_attr(state, field->attrs); 59 vt100_put uchar(state, field->ch);59 vt100_putwchar(state, field->ch); 60 60 } 61 61 … … 122 122 }; 123 123 124 errno_t serial_init(vt100_put uchar_t putuchar_fn,124 errno_t serial_init(vt100_putwchar_t putwchar_fn, 125 125 vt100_control_puts_t control_puts_fn, vt100_flush_t flush_fn) 126 126 { 127 127 vt100_state_t *state = 128 vt100_state_create(SERIAL_COLS, SERIAL_ROWS, put uchar_fn,128 vt100_state_create(SERIAL_COLS, SERIAL_ROWS, putwchar_fn, 129 129 control_puts_fn, flush_fn); 130 130 if (state == NULL)
Note:
See TracChangeset
for help on using the changeset viewer.