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

struct runes_term;
struct runes_window;
struct runes_pty;
struct runes_config;
struct runes_display;
struct runes_loop;
struct runes_daemon;

typedef struct runes_term RunesTerm;
typedef struct runes_window RunesWindowBackend;
typedef struct runes_window_global RunesWindowBackendGlobal;
typedef struct runes_pty RunesPtyBackend;
typedef struct runes_config RunesConfig;
typedef struct runes_display RunesDisplay;
typedef struct runes_loop RunesLoop;
typedef struct runes_daemon RunesDaemon;

#include "util.h"

#endif