home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR2 / DVPG30FS.ZIP / JVSETUP.H < prev    next >
Text File  |  1993-11-30  |  1KB  |  60 lines

  1. /*       These are various variables which are used by the viewing program
  2.  *        (jvmain.c) and the video setup program (jvsetup.c).
  3.  *
  4.  */
  5.  
  6. const char *config_file_name = "dvpeg.cfg";        /* shared by vidsetup, dvpeg */
  7.  
  8.  
  9. char * card_type[] ={
  10.     "4 bit ",
  11.     "8 bit ",
  12.     "15 bit",
  13.     "16 bit",
  14.     "24 bit"};
  15.  
  16.  
  17. /* video card names
  18.     - index must match decleration below in the struct
  19.     - keep name to <= 20 char
  20.     */
  21. char * video_card_names[number_VGA_cards] = {
  22.     "Ahead A",
  23.     "Ahead B",
  24.     "ATI",
  25.     "Chips & tech",
  26.     "Everex",
  27.     "Oak-tek",
  28.     "Genoa",
  29.     "NCR",
  30.     "Paradise",
  31.     "Trident",
  32.     "Tseng",
  33.     "Tseng 4000",
  34.     "Video 7",
  35.     "Cirrus",
  36.     "Compaq",
  37.     "VESA",
  38.     "S3 chips",
  39.     "Speedstar 24X",
  40.     "RealTek 3106",
  41.     "VGA"
  42. /*    "XGA (DOA)"*/
  43.     };
  44.  
  45. /*
  46.     now the list of working modes as selected by the user - 10 maximum
  47.     one extra item at end (always 0) to simplify deletion
  48.     the number is an index into the struct video_card
  49.     */
  50.  
  51.  
  52. int ok_mode[number_modes_in_list+1];        /* used by drawing routines etc - mode listed as edited for gif, jpeg*/
  53. int all_modes[number_modes_in_list+1];        /* the total list of modes as read in */
  54.  
  55.  
  56. int
  57.     max_file_records;        /* the amount of records allocated for storing file information */
  58.  
  59.  
  60.