diff options
| author | Ed Schouten <ed@FreeBSD.org> | 2009-11-11 08:20:19 +0000 |
|---|---|---|
| committer | Ed Schouten <ed@FreeBSD.org> | 2009-11-11 08:20:19 +0000 |
| commit | 3a8a07eaddc5c0e54a22f0e7bba7d6d412fd7e80 (patch) | |
| tree | 0727d54b551a5437ffd2abdee66ef48b4016605c /sys/dev/syscons/syscons.h | |
| parent | 0475bba7f5d9ff73cc59c9a734e88f31eb0ec11a (diff) | |
Notes
Diffstat (limited to 'sys/dev/syscons/syscons.h')
| -rw-r--r-- | sys/dev/syscons/syscons.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/syscons/syscons.h b/sys/dev/syscons/syscons.h index abac2ac6f49f..2f05755c734f 100644 --- a/sys/dev/syscons/syscons.h +++ b/sys/dev/syscons/syscons.h @@ -381,6 +381,7 @@ typedef void sc_term_notify_t(scr_stat *scp, int event); #define SC_TE_NOTIFY_VTSWITCH_IN 0 #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 struct sc_term_sw { LIST_ENTRY(sc_term_sw) link; @@ -398,6 +399,7 @@ typedef struct sc_term_sw { sc_term_clear_t *te_clear; sc_term_notify_t *te_notify; sc_term_input_t *te_input; + sc_term_fkeystr_t *te_fkeystr; } sc_term_sw_t; #define SCTERM_MODULE(name, sw) \ |
