--- ray/src/rt/devtable.c 1989/03/15 14:20:33 1.3 +++ ray/src/rt/devtable.c 2004/03/30 16:13:01 2.7 @@ -1,22 +1,24 @@ -/* Copyright (c) 1988 Regents of the University of California */ - #ifndef lint -static char SCCSid[] = "$SunId$ LBL"; +static const char RCSid[] = "$Id: devtable.c,v 2.7 2004/03/30 16:13:01 schorsch Exp $"; #endif - /* * devtable.c - device table for rview. - * - * 3/30/88 */ +#include "copyright.h" + +#include + +#include "color.h" #include "driver.h" -extern struct driver *aed_init(), *x_init(), *sun_init(); +char dev_default[] = "x11"; +extern dr_initf_t x11_init; /* XXX this should be in a seperate header file */ + struct device devtable[] = { /* supported devices */ - {"aed", "AED 512 color graphics terminal", aed_init}, - {"sun", "SunView color or greyscale screen", sun_init}, - {"X", "X-window color or greyscale display", x_init}, + {"slave", "Slave driver", slave_init}, + {"x11", "X11 color or greyscale display", x11_init}, + {"x11d", "X11 display using stdin/stdout", x11_init}, {0} /* terminator */ };