Changes in uspace/srv/hid/output/port/kfb.c [28a5ebd:4122410] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/output/port/kfb.c
r28a5ebd r4122410 79 79 80 80 /** Function to draw a character. */ 81 typedef void (*draw_char_t)(sysarg_t, sysarg_t, bool, char32_t, pixel_t,81 typedef void (*draw_char_t)(sysarg_t, sysarg_t, bool, wchar_t, pixel_t, 82 82 pixel_t); 83 83 … … 287 287 * 288 288 */ 289 static void draw_char_aligned(sysarg_t x, sysarg_t y, bool inverted, char32_t ch,289 static void draw_char_aligned(sysarg_t x, sysarg_t y, bool inverted, wchar_t ch, 290 290 pixel_t bgcolor, pixel_t fgcolor) 291 291 { … … 350 350 */ 351 351 static void draw_char_fallback(sysarg_t x, sysarg_t y, bool inverted, 352 char32_t ch, pixel_t bgcolor, pixel_t fgcolor)352 wchar_t ch, pixel_t bgcolor, pixel_t fgcolor) 353 353 { 354 354 /* Character glyph */
Note:
See TracChangeset
for help on using the changeset viewer.