aboutsummaryrefslogtreecommitdiffstats
path: root/runes.h
blob: bf51186cbf45c3ef2f291cc62342ce83262d8afc (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
#ifndef _RUNES_H
#define _RUNES_H

#include <cairo.h>
#include <uv.h>

struct runes_term;
struct runes_window;
struct runes_loop_data;

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

#include "events.h"

#include "window-xlib.h"

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

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

#endif