1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 #ifndef MAXMSG
20 #include "wstdefs.h"
21 #endif
22
23
24 #ifndef WSTGLOB
25
26 #include "ws_dcls.h"
27
28 extern char brk_table [96], bs_str [2], char_erase, erkl_chars [4],
29 F1_10 [10][4], F11_12 [2][4], line_kill, lnc, local_action,
30 nl [3], nul_str [2], octstr [6], spaces [10], version [6];
31
32 extern int bk_msg_showing, break_sent, crecho, echo_delay, fg_msg_len,
33 fg_msg_showing, octsw, octval, lfecho, mowse_active,
34 oldtime, sync, read_active, read_count, term_read;
35
36 extern mcb *wst_mcb;
37
38 extern struct ds_struct ds;
39 extern union fg_msg_struct fg_msg;
40 extern struct kb_struct kb;
41 extern struct screen_struct screen;
42 extern struct get_struc tdata_arg;
43
44 extern char *strncpy ();
45
46
47 extern int break_flag;
48 extern int wst_status;
49
50 extern char is_esc[];
51 extern int clr_index;
52 extern int wst_fansi_flag;
53 extern char *audit_file_name;
54 extern int wst_printer_card;
55 extern int wst_prt_timeout;
56
57 extern SCREEN wst_tmp_screen;
58 extern SCREEN wst_bg_screen;
59 extern SCREEN wst_fg_screen;
60 extern SCREEN wst_help_screen;
61
62 extern char *help_lines[];
63 extern int cursor_type;
64 extern int break_sends_to_host;
65
66 extern int wst_edit_mode;
67 extern int wst_freeze;
68 extern int wst_paging;
69 extern int wst_f_audit;
70 extern int wst_p_audit;
71 extern int glass_edit_mode;
72
73 extern EDIT_LINE edlin;
74 extern SCREEN_SIZE ss;
75
76 extern char *print_error_list[];
77 extern char *month_tab[];
78
79 extern int orig_break_status;
80 extern union REGS scroll_regs;
81
82 #define WSTGLOB
83 #endif WSTGLOB
84
85
86