source: trunk/third/x3270/macrosc.h @ 11123

Revision 11123, 1.3 KB checked in by ghudson, 27 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r11122, which included commits to RCS files with non-trunk default branches.
Line 
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 *      macrosc.h
12 *              Global declarations for macros.c.
13 */
14
15/* macro definition */
16struct macro_def {
17        char                    *name;
18        char                    *action;
19        struct macro_def        *next;
20};
21extern struct macro_def *macro_defs;
22
23extern void abort_script();
24extern void AnsiText_action();
25extern void AsciiField_action();
26extern void Ascii_action();
27extern void CloseScript_action();
28extern void ContinueScript_action();
29extern void EbcdicField_action();
30extern void Ebcdic_action();
31extern void Execute_action();
32extern void execute_action_option();
33extern void Expect_action();
34extern void login_macro();
35extern void macros_init();
36extern void Macro_action();
37extern void macro_command();
38extern void PauseScript_action();
39extern void ps_set();
40extern void Script_action();
41extern void peer_script_init();
42extern Boolean sms_active();
43extern void sms_cancel_login();
44extern void sms_connect_wait();
45extern void sms_continue();
46extern void sms_error();
47extern Boolean sms_redirect();
48extern void sms_store();
49extern void Wait_action();
Note: See TracBrowser for help on using the repository browser.