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

#ifndef RUNES_PROGRAM_NAME
#define RUNES_PROGRAM_NAME "runes"
#endif

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

typedef struct runes_term RunesTerm;
typedef struct runes_window RunesWindow;
typedef struct runes_window_backend RunesWindowBackend;
typedef struct runes_pty RunesPty;
typedef struct runes_config RunesConfig;
typedef struct runes_display RunesDisplay;
typedef struct runes_loop RunesLoop;
typedef struct runes_daemon RunesDaemon;

#include "util.h"

#endif