aboutsummaryrefslogtreecommitdiffstats
path: root/src/term.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/term.h')
-rw-r--r--src/term.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/term.h b/src/term.h
index 10bff11..6c84646 100644
--- a/src/term.h
+++ b/src/term.h
@@ -7,15 +7,15 @@ typedef struct vt100_screen VT100Screen;
struct runes_term {
RunesConfig *config;
RunesDisplay *display;
- RunesWindowBackend *w;
- RunesPtyBackend *pty;
+ RunesWindow *w;
+ RunesPty *pty;
VT100Screen *scr;
RunesLoop *loop;
int refcnt;
};
-RunesTerm *runes_term_new(int argc, char *argv[], RunesWindowBackendGlobal *wg);
+RunesTerm *runes_term_new(int argc, char *argv[], RunesWindowBackend *wb);
void runes_term_register_with_loop(RunesTerm *t, RunesLoop *loop);
void runes_term_set_window_size(RunesTerm *t, int xpixel, int ypixel);
void runes_term_refcnt_inc(RunesTerm *t);