source: tags/initial/fig2dev/drivers.h

Last change on this file was 2, checked in by oldcode, 23 years ago

Initial revision

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 KB
Line 
1/*
2 * TransFig: Facility for Translating Fig code
3 * Copyright (c) 1985 Supoj Sutantavibul
4 * Copyright (c) 1991 Micah Beck
5 *
6 * Permission to use, copy, modify, distribute, and sell this software and its
7 * documentation for any purpose is hereby granted without fee, provided that
8 * the above copyright notice appear in all copies and that both that
9 * copyright notice and this permission notice appear in supporting
10 * documentation. The authors make no representations about the suitability
11 * of this software for any purpose.  It is provided "as is" without express
12 * or implied warranty.
13 *
14 * THE AUTHORS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
20 * PERFORMANCE OF THIS SOFTWARE.
21 *
22 */
23
24extern struct driver dev_box;
25extern struct driver dev_epic;
26extern struct driver dev_ibmgl;
27extern struct driver dev_latex;
28extern struct driver dev_pic;
29extern struct driver dev_pictex;
30extern struct driver dev_ps;
31extern struct driver dev_pstex;
32extern struct driver dev_pstex_t;
33extern struct driver dev_textyl;
34extern struct driver dev_tpic;
35
36struct 
37        {char *name; struct driver *dev;}
38        drivers[]
39        = {
40                {"box",         &dev_box}, 
41#ifdef EPIC
42                {"epic",        &dev_epic},
43                {"eepic",       &dev_epic},
44                {"eepicemu",    &dev_epic},
45#endif
46#ifdef IBMGL
47                {"ibmgl",       &dev_ibmgl},
48#endif
49#ifdef LATEX
50                {"latex",       &dev_latex},
51#endif
52#ifdef PIC
53                {"pic",         &dev_pic},
54#endif
55#ifdef PICTEX
56                {"pictex",      &dev_pictex},
57#endif
58#ifdef PS
59                {"ps",          &dev_ps},
60#endif
61#ifdef PSTEX
62                {"pstex",       &dev_pstex},
63                {"pstex_t",     &dev_pstex_t},
64#endif
65#ifdef TEXTYL
66                {"textyl",      &dev_textyl},
67#endif
68#ifdef TPIC
69                {"tpic",        &dev_tpic},
70#endif
71                {"",            NULL}
72        };
Note: See TracBrowser for help on using the repository browser.