aboutsummaryrefslogtreecommitdiffstats
path: root/events.c
blob: 7112b17d0129c4efff5ec45126470eca0bf8dc20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include "runes.h"

void runes_handle_keyboard_event(RunesTerm *t, char *buf, size_t len)
{
    runes_display_glyph(t, buf, len);
}

void runes_handle_close_window(RunesTerm *t)
{
    uv_stop(t->loop);
    t->loop = NULL;
}