source: trunk/third/x3270/ftc.h @ 9081

Revision 9081, 1.2 KB checked in by ghudson, 28 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r9080, which included commits to RCS files with non-trunk default branches.
RevLine 
[9080]1/*
2 * Modifications Copyright 1996 by Paul Mattes.
3 * Copyright October 1995 by Dick Altenbern
4 *  Permission to use, copy, modify, and distribute this software and its
5 *  documentation for any purpose and without fee is hereby granted,
6 *  provided that the above copyright notice appear in all copies and that
7 *  both that copyright notice and this permission notice appear in
8 *  supporting documentation.
9 */
10
11/*
12 *      ftc.h
13 *              Global declarations for ft.c.
14 */
15
16extern Boolean ascii_flag;
17extern Boolean cr_flag;
18extern unsigned long ft_length;
19extern FILE *ft_local_file;
20extern char *ft_local_filename;
21enum ft_state {
22        FT_NONE,        /* No transfer in progress */
23        FT_AWAIT_ACK,   /* IND$FILE sent, awaiting acknowledgement message */
24        FT_RUNNING,     /* Ack received, data flowing */
25        FT_ABORT_WAIT,  /* Awaiting chance to send an abort */
26        FT_ABORT_SENT   /* Abort sent; awaiting response */
27        };
28extern enum ft_state ft_state;
29
30extern void popup_ft();
31
32extern void dialog_focus_action();
33extern void dialog_next_action();
34
35extern void ft_aborting();
36extern void ft_complete();
37extern void ft_disconnected();
38extern void ft_not3270();
39extern void ft_running();
40extern void ft_update_length();
Note: See TracBrowser for help on using the repository browser.