summaryrefslogtreecommitdiff
path: root/src/tsm_vte.h
diff options
context:
space:
mode:
authorDavid Herrmann <dh.herrmann@googlemail.com>2012-09-18 16:59:39 +0200
committerDavid Herrmann <dh.herrmann@googlemail.com>2012-09-18 16:59:39 +0200
commit62e720e0698a1ad4163bbef796e55dffee8f51c5 (patch)
tree175515da592cc3f94f85f2a477644d1fb23e8cad /src/tsm_vte.h
parent67cd0ef3a728e6d780114af60d48e1216ed750f3 (diff)
tsm: vte: rename kmscon_vte object to tsm_vte
Perform final rename of the remaining vte objects. Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
Diffstat (limited to 'src/tsm_vte.h')
-rw-r--r--src/tsm_vte.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/tsm_vte.h b/src/tsm_vte.h
index 435c80f..a57dd21 100644
--- a/src/tsm_vte.h
+++ b/src/tsm_vte.h
@@ -48,7 +48,7 @@ extern tsm_vte_charset tsm_vte_dec_special_graphics;
/* virtual terminal emulator */
-struct kmscon_vte;
+struct tsm_vte;
enum tsm_vte_keyboard_action {
tsm_vte_DROP,
@@ -57,19 +57,19 @@ enum tsm_vte_keyboard_action {
#define TSM_VTE_INVALID 0xffffffff
-typedef void (*tsm_vte_write_cb) (struct kmscon_vte *vte,
- const char *u8,
- size_t len,
- void *data);
+typedef void (*tsm_vte_write_cb) (struct tsm_vte *vte,
+ const char *u8,
+ size_t len,
+ void *data);
-int tsm_vte_new(struct kmscon_vte **out, struct tsm_screen *con,
- tsm_vte_write_cb write_cb, void *data);
-void tsm_vte_ref(struct kmscon_vte *vte);
-void tsm_vte_unref(struct kmscon_vte *vte);
+int tsm_vte_new(struct tsm_vte **out, struct tsm_screen *con,
+ tsm_vte_write_cb write_cb, void *data);
+void tsm_vte_ref(struct tsm_vte *vte);
+void tsm_vte_unref(struct tsm_vte *vte);
-void tsm_vte_reset(struct kmscon_vte *vte);
-void tsm_vte_input(struct kmscon_vte *vte, const char *u8, size_t len);
-bool tsm_vte_handle_keyboard(struct kmscon_vte *vte, uint32_t keysym,
- unsigned int mods, uint32_t unicode);
+void tsm_vte_reset(struct tsm_vte *vte);
+void tsm_vte_input(struct tsm_vte *vte, const char *u8, size_t len);
+bool tsm_vte_handle_keyboard(struct tsm_vte *vte, uint32_t keysym,
+ unsigned int mods, uint32_t unicode);
#endif /* TSM_VTE_H */