ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/rt/devtable.c
Revision: 2.6
Committed: Mon Jun 30 19:04:29 2003 UTC (20 years, 10 months ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 2.5: +3 -1 lines
Log Message:
Removed stdio.h includes from calcomp.h, resolu.h, and color.h

File Contents

# Content
1 #ifndef lint
2 static const char RCSid[] = "$Id: devtable.c,v 2.5 2003/02/25 02:47:22 greg Exp $";
3 #endif
4 /*
5 * devtable.c - device table for rview.
6 */
7
8 #include "copyright.h"
9
10 #include <stdio.h>
11
12 #include "color.h"
13
14 #include "driver.h"
15
16 char dev_default[] = "x11";
17
18 extern struct driver *x11_init();
19
20 struct device devtable[] = { /* supported devices */
21 {"slave", "Slave driver", slave_init},
22 {"x11", "X11 color or greyscale display", x11_init},
23 {"x11d", "X11 display using stdin/stdout", x11_init},
24 {0} /* terminator */
25 };