| 1 |
– |
/* Copyright (c) 1988 Regents of the University of California */ |
| 2 |
– |
|
| 1 |
|
#ifndef lint |
| 2 |
< |
static char SCCSid[] = "$SunId$ LBL"; |
| 2 |
> |
static const char RCSid[] = "$Id$"; |
| 3 |
|
#endif |
| 6 |
– |
|
| 4 |
|
/* |
| 5 |
|
* devtable.c - device table for rview. |
| 9 |
– |
* |
| 10 |
– |
* 3/30/88 |
| 6 |
|
*/ |
| 7 |
|
|
| 8 |
+ |
#include "copyright.h" |
| 9 |
+ |
|
| 10 |
+ |
#include "color.h" |
| 11 |
+ |
|
| 12 |
|
#include "driver.h" |
| 13 |
|
|
| 14 |
< |
char dev_default[] = "X"; |
| 14 |
> |
char dev_default[] = "x11"; |
| 15 |
|
|
| 16 |
< |
extern struct driver *aed_init(), *x_init(); |
| 16 |
> |
extern struct driver *x11_init(); |
| 17 |
|
|
| 18 |
|
struct device devtable[] = { /* supported devices */ |
| 19 |
< |
{"aed", "AED 512 color graphics terminal", aed_init}, |
| 20 |
< |
{"sundev", "SunView color or greyscale screen", comm_init}, |
| 21 |
< |
{"X", "X10 color or greyscale display", x_init}, |
| 23 |
< |
{"x11dev", "X11 color or greyscale display", comm_init}, |
| 19 |
> |
{"slave", "Slave driver", slave_init}, |
| 20 |
> |
{"x11", "X11 color or greyscale display", x11_init}, |
| 21 |
> |
{"x11d", "X11 display using stdin/stdout", x11_init}, |
| 22 |
|
{0} /* terminator */ |
| 23 |
|
}; |