ftc.h
1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
* Modifications Copyright 1996, 1999, 2000, 2001, 2002, 2003 by Paul Mattes.
* Copyright October 1995 by Dick Altenbern
* Permission to use, copy, modify, and distribute this software and its
* documentation for any purpose and without fee is hereby granted,
* provided that the above copyright notice appear in all copies and that
* both that copyright notice and this permission notice appear in
* supporting documentation.
*
* x3270, c3270, s3270 and tcl3270 are distributed in the hope that they will
* be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the file LICENSE
* for more details.
*/
/*
* ftc.h
* Global declarations for ft.c.
*/
#if defined(X3270_FT) /*[*/
LIB3270_INTERNAL Boolean ascii_flag;
LIB3270_INTERNAL Boolean cr_flag;
LIB3270_INTERNAL unsigned long ft_length;
LIB3270_INTERNAL FILE *ft_local_file;
LIB3270_INTERNAL char *ft_local_filename;
LIB3270_INTERNAL Boolean ft_last_cr;
LIB3270_INTERNAL Boolean remap_flag;
LIB3270_INTERNAL void ft_init(void);
LIB3270_INTERNAL void ft_aborting(void);
LIB3270_INTERNAL void ft_complete(const char *errmsg);
LIB3270_INTERNAL void ft_running(Boolean is_cut);
LIB3270_INTERNAL void ft_update_length(void);
/*
extern void PA_dialog_focus_action(Widget w, XEvent *event, String *parms,
Cardinal *num_parms);
extern void PA_dialog_next_action(Widget w, XEvent *event, String *parms,
Cardinal *num_parms);
extern void popup_ft(Widget w, XtPointer call_parms, XtPointer call_data);
extern void Transfer_action(Widget w, XEvent *event, String *parms,
Cardinal *num_parms);
*/
#endif /*]*/