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

Revision 9081, 1.1 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 * Copyright 1995 by Paul Mattes.
3 *  Permission to use, copy, modify, and distribute this software and its
4 *  documentation for any purpose and without fee is hereby granted,
5 *  provided that the above copyright notice appear in all copies and that
6 *  both that copyright notice and this permission notice appear in
7 *  supporting documentation.
8 */
9
10/*
11 *      telnetc.h
12 *              Global declarations for telnet.c.
13 */
14
15/* Output buffer. */
16extern unsigned char *obuf, *obptr;
17
18/* Spelled-out tty control character. */
19struct ctl_char {
20        char *name;
21        char value[3];
22};
23
24extern void net_add_eor();
25extern void net_break();
26extern void net_charmode();
27extern int net_connect();
28extern void net_disconnect();
29extern void net_exception();
30extern void net_input();
31extern void net_linemode();
32extern struct ctl_char *net_linemode_chars();
33extern void net_output();
34extern void net_sendc();
35extern void net_sends();
36extern void net_send_erase();
37extern void net_send_kill();
38extern void net_send_werase();
39extern Boolean net_snap_options();
40extern void space3270out();
41extern void trace_netdata();
Note: See TracBrowser for help on using the repository browser.