aboutsummaryrefslogtreecommitdiffstats
path: root/runes.h
blob: a3962f6d8021eac4515ee8aae880d37039c89789 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _RUNES_H
#define _RUNES_H

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

struct runes_term;
struct runes_window;

typedef struct runes_term RunesTerm;
typedef struct runes_window RunesWindow;

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

#include "xlib.h"

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

#endif