Revision 9090,
1.3 KB
checked in by ghudson, 28 years ago
(diff) |
This commit was generated by cvs2svn to compensate for changes in r9089,
which included commits to RCS files with non-trunk default branches.
|
Line | |
---|
1 | |
---|
2 | /* action.h |
---|
3 | * |
---|
4 | * Copyright (C) 1985,1987 Adobe Systems Incorporated. All rights reserved. |
---|
5 | * GOVERNMENT END USERS: See notice of rights in Notice file in TranScript |
---|
6 | * library directory -- probably /usr/lib/ps/Notice |
---|
7 | * RCSID: $Header: /afs/dev.mit.edu/source/repository/third/transcript/src/action.h,v 1.1.1.1 1996-10-07 20:25:46 ghudson Exp $ |
---|
8 | * |
---|
9 | * action table types for pscat/pscatmap/ptroff character mapping |
---|
10 | * |
---|
11 | * RCSLOG: |
---|
12 | * $Log: not supported by cvs2svn $ |
---|
13 | * Revision 3.1 1992/08/21 16:26:32 snichols |
---|
14 | * Release 4.0 |
---|
15 | * |
---|
16 | * Revision 3.0 1991/06/17 16:50:45 snichols |
---|
17 | * Release 3.0 |
---|
18 | * |
---|
19 | * Revision 2.2 1987/11/17 16:49:17 byron |
---|
20 | * *** empty log message *** |
---|
21 | * |
---|
22 | * Revision 2.2 87/11/17 16:49:17 byron |
---|
23 | * Release 2.1 |
---|
24 | * |
---|
25 | * Revision 2.1.1.2 87/11/12 13:39:51 byron |
---|
26 | * Changed Government user's notice. |
---|
27 | * |
---|
28 | * Revision 2.1.1.1 87/04/23 10:25:01 byron |
---|
29 | * Copyright notice. |
---|
30 | * |
---|
31 | * Revision 2.2 86/11/02 14:13:27 shore |
---|
32 | * Product Update |
---|
33 | * |
---|
34 | * Revision 2.1 85/11/24 12:07:51 shore |
---|
35 | * Product Release 2.0 |
---|
36 | * |
---|
37 | * Revision 1.2 85/05/14 11:21:08 shore |
---|
38 | * |
---|
39 | * |
---|
40 | * |
---|
41 | */ |
---|
42 | |
---|
43 | #define PFONT 1 |
---|
44 | #define PLIG 2 |
---|
45 | #define PPROC 3 |
---|
46 | #define PNONE 4 |
---|
47 | |
---|
48 | struct chAction { |
---|
49 | unsigned char actCode; |
---|
50 | char * actName; |
---|
51 | }; |
---|
52 | |
---|
53 | |
---|
54 | struct map { |
---|
55 | int wid; |
---|
56 | int x,y; |
---|
57 | int font; |
---|
58 | int pschar; |
---|
59 | int action; |
---|
60 | int pswidth; |
---|
61 | }; |
---|
Note: See
TracBrowser
for help on using the repository browser.