aboutsummaryrefslogtreecommitdiffstats
path: root/runes.h
blob: 1fa77a7b48ec842644cafe3f2f0d350ff8c014df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef _RUNES_H
#define _RUNES_H

#include <cairo.h>
#include <pango/pangocairo.h>
#include <uv.h>

struct runes_term;
struct runes_window;
struct runes_pty;
struct runes_loop_data;

typedef struct runes_term RunesTerm;
typedef struct runes_window RunesWindowBackend;
typedef struct runes_pty RunesPtyBackend;
typedef struct runes_loop_data RunesLoopData;

struct runes_loop_data {
    uv_work_t req;
    RunesTerm *t;
};

#include "window-xlib.h"
#include "pty-unix.h"

#include "term.h"
#include "display.h"
#include "parser.h"

#define UNUSED(x) ((void)x)

#endif