aboutsummaryrefslogtreecommitdiffstats
path: root/term.h
blob: 04ea3c225cff84b0e66f9a0ff15eb41218cd8066 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _RUNES_TERM_H
#define _RUNES_TERM_H

struct runes_term {
    RunesWindow *w;
    /* RunesBuffer *buf; */

    cairo_surface_t *surface;
    cairo_t *cr;

    uv_loop_t *loop;
};

RunesTerm *runes_term_create();
void runes_term_destroy(RunesTerm *t);

#endif