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

struct runes_term {
    RunesWindowBackend w;

    cairo_t *cr;
    uv_loop_t *loop;
};

void runes_term_init(RunesTerm *t, int argc, char *argv[]);
void runes_term_cleanup(RunesTerm *t);

#endif