don't let users create their own symbol table for the running kernel
[unix-history] / usr / src / usr.bin / talk / talk.h
CommitLineData
d0aeaf5a
DF
1/*
2 * Copyright (c) 1983 Regents of the University of California.
f9ac90b4 3 * All rights reserved.
d0aeaf5a 4 *
cb956e54 5 * %sccs.include.redist.c%
f9ac90b4 6 *
a4e94754 7 * @(#)talk.h 5.7 (Berkeley) %G%
d0aeaf5a 8 */
48adc376
MK
9
10#include <curses.h>
48adc376 11
963ce42e
MK
12extern int sockt;
13extern int curses_initialized;
14extern int invitation_waiting;
48adc376 15
963ce42e
MK
16extern char *current_state;
17extern int current_line;
48adc376
MK
18
19typedef struct xwin {
963ce42e
MK
20 WINDOW *x_win;
21 int x_nlines;
22 int x_ncols;
23 int x_line;
24 int x_col;
25 char kill;
26 char cerase;
27 char werase;
48adc376
MK
28} xwin_t;
29
963ce42e
MK
30extern xwin_t my_win;
31extern xwin_t his_win;
32extern WINDOW *line_win;