aboutsummaryrefslogtreecommitdiffstats
path: root/term.h
blob: 68b3f9c6f6fd106ab384b30704b4d5b89f8f08c8 (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(int argc, char *argv[]);
void runes_term_destroy(RunesTerm *t);

#endif