Changes in uspace/lib/gui/terminal.c [6feccae:28a5ebd] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/gui/terminal.c
r6feccae r28a5ebd 42 42 #include <io/concaps.h> 43 43 #include <io/console.h> 44 #include <loc.h>45 44 #include <task.h> 46 45 #include <adt/list.h> … … 420 419 if (event->type == CEV_KEY && event->ev.key.type == KEY_PRESS && 421 420 event->ev.key.c != 0) { 422 wchar_t tmp[2] = {421 char32_t tmp[2] = { 423 422 event->ev.key.c, 424 423 0 … … 437 436 } 438 437 439 static void term_write_char(terminal_t *term, wchar_t ch)438 static void term_write_char(terminal_t *term, char32_t ch) 440 439 { 441 440 sysarg_t updated = 0; … … 456 455 break; 457 456 default: 458 updated = chargrid_put wchar(term->frontbuf, ch, true);457 updated = chargrid_putuchar(term->frontbuf, ch, true); 459 458 } 460 459
Note:
See TracChangeset
for help on using the changeset viewer.