Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/genarch/src/kbrd/kbrd.c

    raafed15 r28a5ebd  
    7676 * @param sc Scancode of the key being released.
    7777 */
    78 static void key_released(kbrd_instance_t *instance, wchar_t sc)
     78static void key_released(kbrd_instance_t *instance, char32_t sc)
    7979{
    8080        spinlock_lock(&instance->keylock);
     
    103103 * @param sc Scancode of the key being pressed.
    104104 */
    105 static void key_pressed(kbrd_instance_t *instance, wchar_t sc)
     105static void key_pressed(kbrd_instance_t *instance, char32_t sc)
    106106{
    107107        bool letter;
    108108        bool shift;
    109109        bool capslock;
    110         wchar_t ch;
     110        char32_t ch;
    111111
    112112        spinlock_lock(&instance->keylock);
     
    158158
    159159        while (true) {
    160                 wchar_t sc = indev_pop_character(&instance->raw);
     160                char32_t sc = indev_pop_character(&instance->raw);
    161161
    162162                if (sc == IGNORE_CODE)
Note: See TracChangeset for help on using the changeset viewer.