Revision 9081,
835 bytes
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.
|
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 | * actionsc.h |
---|
12 | * Global declarations for actions.c. |
---|
13 | */ |
---|
14 | |
---|
15 | /* types of internal actions */ |
---|
16 | enum iaction { |
---|
17 | IA_STRING, IA_PASTE, IA_REDRAW, |
---|
18 | IA_KEYPAD, IA_DEFAULT, IA_KEY, |
---|
19 | IA_MACRO, IA_SCRIPT, IA_PEEK, |
---|
20 | IA_TYPEAHEAD, IA_FT |
---|
21 | }; |
---|
22 | extern enum iaction ia_cause; |
---|
23 | |
---|
24 | extern int actioncount; |
---|
25 | extern XtActionsRec actions[]; |
---|
26 | |
---|
27 | extern char *ia_name[]; |
---|
28 | |
---|
29 | extern void action_debug(); |
---|
30 | extern void action_internal(); |
---|
31 | extern char *action_name(); |
---|
32 | extern int check_usage(); |
---|
Note: See
TracBrowser
for help on using the repository browser.