home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Raytrace & Morphing / SOS-RAYTRACE.ISO / programm / source / radsrc22 / src / rt / rview / devtable.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-14  |  542 b   |  24 lines

  1. /* Copyright (c) 1991 Regents of the University of California */
  2.  
  3. #ifndef lint
  4. static char SCCSid[] = "@(#)devtable.c 2.2 12/13/91 LBL";
  5. #endif
  6.  
  7. /*
  8.  *  devtable.c - device table for rview.
  9.  *
  10.  *      3/30/88
  11.  */
  12.  
  13. #include  "driver.h"
  14.  
  15. char  dev_default[] = "svga";
  16.  
  17. extern struct driver  *vga_init();
  18.  
  19. struct device  devtable[] = {                   /* supported devices */
  20.     {"vga", "MS-DOS VGA driver", vga_init},
  21.     {"svga", "MS-DOS SVGA driver", vga_init},
  22.     {0}                                     /* terminator */
  23. };
  24.