Lines Matching defs:rconsole
52 struct rconsole { struct
54 u_int rc_maxrow; /* emulator height of screen */
55 u_int rc_maxcol; /* emulator width of screen */
56 void (*rc_bell)(int); /* ring the bell */
57 struct wsdisplay_emulops *rc_ops;/* output ops */
58 void *rc_cookie; /* cookie thereof */
59 u_int rc_width; /* width in pixels */
60 u_int rc_height; /* height in pixels */
61 u_int rc_row; /* emulator row */
62 u_int rc_col; /* emulator column */
64 struct callout rc_belltmr_ch;
67 int rc_deffgcolor; /* default fg color */
68 int rc_defbgcolor; /* default bg color */
71 u_int rc_bits; /* see defines below */
72 int rc_ringing; /* bell currently ringing */
73 int rc_belldepth; /* audible bell depth */
74 int rc_scroll; /* stupid sun scroll mode */
75 int rc_p0; /* escape sequence parameter 0 */
76 int rc_p1; /* escape sequence parameter 1 */
100 void rcons_bell(struct rconsole *); argument