aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/syscons/syscons.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/syscons/syscons.h')
-rw-r--r--sys/dev/syscons/syscons.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/syscons/syscons.h b/sys/dev/syscons/syscons.h
index 443792717ec03..bae38b5c0a472 100644
--- a/sys/dev/syscons/syscons.h
+++ b/sys/dev/syscons/syscons.h
@@ -394,6 +394,7 @@ typedef void sc_term_notify_t(scr_stat *scp, int event);
#define SC_TE_NOTIFY_VTSWITCH_OUT 1
typedef int sc_term_input_t(scr_stat *scp, int c, struct tty *tp);
typedef const char *sc_term_fkeystr_t(scr_stat *scp, int c);
+typedef void sc_term_set_cursor_t(scr_stat *scp, int col, int row);
typedef struct sc_term_sw {
LIST_ENTRY(sc_term_sw) link;
@@ -412,6 +413,7 @@ typedef struct sc_term_sw {
sc_term_notify_t *te_notify;
sc_term_input_t *te_input;
sc_term_fkeystr_t *te_fkeystr;
+ sc_term_set_cursor_t *te_set_cursor;
} sc_term_sw_t;
#define SCTERM_MODULE(name, sw) \