home *** CD-ROM | disk | FTP | other *** search
/ Current Shareware 1994 January / SHAR194.ISO / utility / cpqvgi.zip / OEMSETUP.INF < prev    next >
INI File  |  1993-07-24  |  20KB  |  583 lines

  1. ;-----------------------------------------------------------------------
  2. ; OPTION TYPE
  3. ; -----------
  4. ; This identifies the Option type we are dealing with.  The different
  5. ; possible types are:
  6. ;
  7. ; COMPUTER, VIDEO, MOUSE, KEYBOARD, LAYOUT, SCSI, PRINTER, ...
  8. ;-----------------------------------------------------------------------
  9.  
  10. [Identification]
  11.     OptionType = VIDEO
  12.  
  13. ;-----------------------------------------------------------------------
  14. ; LANGUAGES SUPPORTED
  15. ; -------------------
  16. ;
  17. ; The languages supported by the OEM INF, For every language supported
  18. ; we need to have a separate text section for every displayable text
  19. ; section.
  20. ;
  21. ;-----------------------------------------------------------------------
  22.  
  23. [LanguagesSupported]
  24.     ENG
  25.  
  26. ;-----------------------------------------------------------------------
  27. ; OPTION LIST
  28. ; -----------
  29. ; This section lists the OEM Option key names.  These keys are locale
  30. ; independent and used to represent the option in a locale independent
  31. ; manner.
  32. ;
  33. ;-----------------------------------------------------------------------
  34.  
  35. ;
  36. ; Option list order: Option = Miniport driver, BitsPerPel, XResolution, YResolution, VRefresh, Interlaced
  37. ;
  38. ; If you don't want to create a VRefresh or Interlaced value under the service
  39. ; parameters then use the value ""
  40. ;
  41.  
  42. [Options]
  43.     "Compaq AVGA 640x480x4"                   = avga, 4, 640, 480, 60, 0
  44.     "Compaq AVGA 640x480x8"                   = avga, 8, 640, 480, 60, 0
  45.     "Compaq AVGA 800x600x4"                   = avga, 4, 800, 600, 60, 0
  46.  
  47. ;
  48. ; This maps detected options into the options we support
  49. ;
  50. ; Format: DetectedOption = MappedOption
  51. ;
  52.  
  53. ; BUG BUG tedm should change this so AVGA does not map to VGA!!!
  54.  
  55.  
  56. [MapOfOptions]
  57.     "VGA"                       = "VGA"
  58.     "COMPAQ AVGA"               = "VGA"
  59.     "COMPAQ AGB"                = "VGA"
  60.     "8514 MONITOR UNKNOWN"      = "VGA"
  61.     "8514 VGA MONITOR"          = "VGA"
  62.     "8514 8503 MONO"            = "VGA"
  63.     "8514 8514 GAD"             = "VGA"
  64.     "GENOA VGA"                 = "VGA"
  65.     "VIDEO7 VGA DRAM"           = "VIDEO7 VGA VRAM 640x480x4"
  66.     "VIDEO7 VGA VRAM"           = "VIDEO7 VGA VRAM 640x480x4"
  67.     "TRIDENT VGA"               = "VGA"
  68.     "TRIDENT VGA 9100"          = "VGA"
  69.     "PARADISE VGA"              = "VGA"
  70.     "PARADISE VGA PROM"         = "VGA"
  71.     "PARADISE VGA CHIP 1F"      = "VGA"
  72.     "ATI VGA"                   = "VGA"
  73.     "ATI VGA WONDDER3"          = "VGA"
  74.     "TSENGLAB VGA ET3000"       = "VGA"
  75.     "TSENGLAB VGA ET4000"       = "TSENGLAB VGA ET4000 640x480x4x60"
  76.     "CIRRUS VGA"                = "VGA"
  77.     "CIRRUS VGA 610-620 REVC"   = "VGA"
  78.     "XGA"                       = "XGA 640x480x8"
  79.     "DELL DGX"                  = "DELL DGX 640x480x8"
  80.     "S3 VGA"                    = "S3 VGA 640x480x8"
  81.     "PRODESIGNER II"            = "TSENGLAB VGA ET4000 640x480x4x60"
  82.  
  83.  
  84. ;
  85. ; Order of the information:
  86. ;
  87. ; Port driver = Type, Group, ErrorControl, Tag, InstalledDisplay, VgaCompatible( 0/1 ), EventMessageFile, TypesSupported
  88. ;
  89.  
  90. [MiniportDrivers]
  91.     avga      = !SERVICE_KERNEL_DRIVER, Video, !SERVICE_ERROR_NORMAL, 87,  {vga,vga256}, 1 , %SystemRoot%\System32\IoLogMsg.dll , 7
  92.     
  93.  
  94. ;-----------------------------------------------------------------------
  95. ; OPTION TEXT SECTION
  96. ; -------------------
  97. ; These are text strings used to identify the option to the user.  There
  98. ; are separate sections for each language supported.  The format of the
  99. ; section name is "OptionsText" concatenated with the Language represented
  100. ; by the section.
  101. ;
  102. ;-----------------------------------------------------------------------
  103.  
  104. [OptionsTextENG]
  105.     "Compaq AVGA 640x480x4"                   =  "Compaq AVGA 640x480, 16 colors"
  106.     "Compaq AVGA 640x480x8"                   =  "Compaq AVGA 512K 640x480 256 colors"
  107.     "Compaq AVGA 800x600x4"                   =  "Compaq AVGA 512K 800x600 16 colors, CRT only!"
  108.  
  109.  
  110. ;---------------------------------------------------------------------------
  111. ; 1. Identify
  112. ;
  113. ; DESCRIPTION:   To verify that this INF deals with the same type of options
  114. ;                as we are choosing currently.
  115. ;
  116. ; INPUT:         None
  117. ;
  118. ; OUTPUT:        $($R0): STATUS: STATUS_SUCCESSFUL
  119. ;                $($R1): Option Type (COMPUTER ...)
  120. ;                $($R2): Diskette description
  121. ;---------------------------------------------------------------------------
  122.  
  123. [Identify]
  124.     ;
  125.     ;
  126.     read-syms Identification
  127.  
  128.     set Status     = STATUS_SUCCESSFUL
  129.     set Identifier = $(OptionType)
  130.     set Media      = #("Source Media Descriptions", 1, 1)
  131.  
  132.     Return $(Status) $(Identifier) $(Media)
  133.  
  134.  
  135.  
  136. ;------------------------------------------------------------------------
  137. ; 2. ReturnOptions:
  138. ;
  139. ; DESCRIPTION:   To return the option list supported by this INF and the
  140. ;                localised text list representing the options.
  141. ;
  142. ;
  143. ; INPUT:         $($0):  Language used. ( ENG | FRN | ... )
  144. ;
  145. ; OUTPUT:        $($R0): STATUS: STATUS_SUCCESSFUL |
  146. ;                                STATUS_NOLANGUAGE
  147. ;                                STATUS_FAILED
  148. ;
  149. ;                $($R1): Option List
  150. ;                $($R2): Option Text List
  151. ;------------------------------------------------------------------------
  152.  
  153. [ReturnOptions]
  154.     ;
  155.     ;
  156.     set Status        = STATUS_FAILED
  157.     set OptionList     = {}
  158.     set OptionTextList = {}
  159.  
  160.     ;
  161.     ; Check if the language requested is supported
  162.     ;
  163.     set LanguageList = ^(LanguagesSupported, 1)
  164.     Ifcontains(i) $($0) in $(LanguageList)
  165.         goto returnoptions
  166.     else
  167.         set Status = STATUS_NOLANGUAGE
  168.         goto finish_ReturnOptions
  169.     endif
  170.  
  171.     ;
  172.     ; form a list of all the options and another of the text representing
  173.     ;
  174.  
  175. returnoptions = +
  176.     set OptionList     = ^(Options, 0)
  177.     set OptionTextList = ^(OptionsText$($0), 1)
  178.     set Status         = STATUS_SUCCESSFUL
  179.  
  180. finish_ReturnOptions = +
  181.     Return $(Status) $(OptionList) $(OptionTextList)
  182.  
  183.  
  184.  
  185. ;---------------------------------------------------------------------------
  186. ; MapToSupportedOption
  187. ;
  188. ; DESCRIPTION:   To map a hardware detected option to the NT Supported
  189. ;                option which represents it.
  190. ;
  191. ; INPUT:         $($0): Option
  192. ;
  193. ; OUTPUT:        $($R0): STATUS: STATUS_SUCCESSFUL
  194. ;                $($R1): Mapped Option
  195. ;
  196. ;---------------------------------------------------------------------------
  197.  
  198. [MapToSupportedOption]
  199.     ;
  200.     set Status = STATUS_FAILED
  201.     set MappedOption = $($0)
  202.  
  203.     ;
  204.     ; If the option is one we can support using one of our standard options
  205.     ; then map it to the standard option else map it to the default option
  206.     ; which is VGA.
  207.     ;
  208.  
  209.     set OptionList = ^(MapOfOptions, 0)
  210.     ifcontains $($0) in $(OptionList)
  211.         set MappedOption = #(MapOfOptions, $($0), 1)
  212.     else
  213.         set MappedOption = "VGA"
  214.     endif
  215.  
  216.     set Status = STATUS_SUCCESSFUL
  217.     Return $(Status) $(MappedOption)
  218.  
  219.  
  220.  
  221. [ServicesEntry]
  222.     CurrentEntry = "" ? $(!LIBHANDLE) GetDevicemapValue Video \Device\Video0
  223.  
  224.  
  225. ;
  226. ; InstallOption:
  227. ;
  228. ; FUNCTION:  To copy files representing Options
  229. ;            To configure the installed option
  230. ;            To update the registry for the installed option
  231. ;
  232. ; INPUT:     $($0):  Language to use
  233. ;            $($1):  OptionID to install
  234. ;            $($2):  SourceDirectory
  235. ;            $($3):  AddCopy  (YES | NO)
  236. ;            $($4):  DoCopy   (YES | NO)
  237. ;            $($5):  DoConfig (YES | NO)
  238. ;
  239. ; OUTPUT:    $($R0): STATUS: STATUS_SUCCESSFUL |
  240. ;                            STATUS_NOLANGUAGE |
  241. ;                            STATUS_USERCANCEL |
  242. ;                            STATUS_FAILED
  243. ;
  244.  
  245. [InstallOption]
  246.  
  247.     ;
  248.     ; Set default values for
  249.     ;
  250.     set Status       = STATUS_FAILED
  251.     set DrivesToFree = {}
  252.  
  253.     ;
  254.     ; extract parameters
  255.     ;
  256.     set Option   = $($1)
  257.     set SrcDir   = $($2)
  258.     set AddCopy  = $($3)
  259.     set DoCopy   = $($4)
  260.     set DoConfig = $($5)
  261.  
  262.     ;
  263.     ; Check if the language requested is supported
  264.     ;
  265.     set LanguageList = ^(LanguagesSupported, 1)
  266.     Ifcontains(i) $($0) in $(LanguageList)
  267.     else
  268.         set Status = STATUS_NOLANGUAGE
  269.         goto finish_InstallOption
  270.     endif
  271.     read-syms Strings$($0)
  272.  
  273.     ;
  274.     ; check to see if Option is supported.
  275.     ;
  276.  
  277.     set OptionList = ^(Options, 0)
  278.     ifcontains $(Option) in $(OptionList)
  279.     else
  280.         goto finish_InstallOption
  281.     endif
  282.     set OptionList = ""
  283.  
  284.     ;
  285.     ; Option has been defined already
  286.     ;
  287.     set MiniportDriver    = #(Options, $(Option), 1)
  288.     set BitsPerPel        = #(Options, $(Option), 2)
  289.     set XResolution       = #(Options, $(Option), 3)
  290.     set YResolution       = #(Options, $(Option), 4)
  291.     set VRefresh          = #(Options, $(Option), 5)
  292.     set Interlaced        = #(Options, $(Option), 6)
  293.  
  294.     set Type              = $(#(MiniportDrivers, $(MiniportDriver), 1))
  295.     set Group             =   #(MiniportDrivers, $(MiniportDriver), 2)
  296.     set ErrorControl      = $(#(MiniportDrivers, $(MiniportDriver), 3))
  297.     set Tag               =   #(MiniportDrivers, $(MiniportDriver), 4)
  298.     set InstalledDisplays =   #(MiniportDrivers, $(MiniportDriver), 5)
  299.     set VgaCompatible     =   #(MiniportDrivers, $(MiniportDriver), 6)
  300.     set EventMessageFile  =   #(MiniportDrivers, $(MiniportDriver), 7)
  301.     set TypesSupported    =   #(MiniportDrivers, $(MiniportDriver), 8)
  302.  
  303.     read-syms ServicesEntry
  304.     detect    ServicesEntry
  305.  
  306. installtheoption = +
  307.  
  308.     ;
  309.     ; Code to add files to copy list
  310.     ;
  311.  
  312.     ifstr(i) $(AddCopy) == "YES"
  313.         set DoActualCopy = NO
  314.         set FileToCheck = #(Files-DisplayMiniportDrivers, $(MiniportDriver), 2)
  315.         LibraryProcedure STATUS,$(!LIBHANDLE),CheckFileExistance $(!STF_WINDOWSSYSPATH)"\drivers\"$(FileToCheck)
  316.         ifstr(i) $(STATUS) == NO
  317.             set DoActualCopy = YES
  318.             goto addfiles
  319.         endif
  320.         ForListDo $(InstalledDisplays)
  321.             set FileToCheck = #(Files-DisplayDLLs, $($), 2)
  322.             LibraryProcedure STATUS,$(!LIBHANDLE),CheckFileExistance $(!STF_WINDOWSSYSPATH)"\"$(FileToCheck)
  323.             ifstr(i) $(STATUS) == NO
  324.                 set DoActualCopy = YES
  325.             endif
  326.         EndForListDo
  327.  
  328. addfiles = +
  329.         ifstr(i) $(DoActualCopy) == NO
  330.             shell "subroutn.inf" DriversExist $($0) $(String1)
  331.             ifint $($ShellCode) != $(!SHELL_CODE_OK)
  332.                 Debug-Output "VIDEO.INF: shelling DriversExist failed"
  333.                 goto finish_InstallOption
  334.             endif
  335.  
  336.             ifstr(i) $($R0) == STATUS_CURRENT
  337.             else-ifstr(i) $($R0) == STATUS_NEW
  338.                 set DoActualCopy = YES
  339.             else-ifstr(i) $($R0) == STATUS_USERCANCEL
  340.                 Debug-Output "VIDEO.INF: User cancelled video installation"
  341.                 goto finish_InstallOption
  342.             else
  343.                 Debug-Output "VIDEO.INF: Error reported in DriversExist routine in SUBROUTN.INF"
  344.                 goto finish_InstallOption
  345.             endif
  346.         endif
  347.  
  348.         ifstr(i) $(DoActualCopy) == YES
  349.  
  350.             shell "subroutn.inf" DoAskSourceEx $(SrcDir) $(String2)
  351.             ifint $($ShellCode) != $(!SHELL_CODE_OK)
  352.                 Debug-Output "VIDEO.INF: shelling DoAskSourceEx failed"
  353.                 goto finish_InstallOption
  354.             endif
  355.  
  356.             ifstr(i) $($R0) == STATUS_SUCCESSFUL
  357.                 set SrcDir = $($R1)
  358.                 ifstr(i) $($R2) != ""
  359.                     set DrivesToFree = >($(DrivesToFree), $($R2))
  360.                 endif
  361.             else
  362.                 Debug-Output "VIDEO.INF: User cancelled asking source."
  363.                 goto finish_InstallOption
  364.             endif
  365.  
  366.             install Install-AddCopyOption
  367.             ifstr(i) $(STF_INSTALL_OUTCOME) != "STF_SUCCESS"
  368.                 Debug-Output "VIDEO.INF: Adding video files to copy list failed"
  369.                 goto finish_InstallOption
  370.             endif
  371.         else
  372.             set DoCopy = NO
  373.         endif
  374.  
  375.     endif
  376.  
  377.     ifstr(i) $(DoCopy) == "YES"
  378.         read-syms ProgressCopy$($0)
  379.         install Install-DoCopyOption
  380.         ifstr(i) $(STF_INSTALL_OUTCOME) == "STF_FAILURE"
  381.             Debug-Output "Copying files failed"
  382.             goto finish_InstallOption
  383.         else-ifstr(i) $(STF_INSTALL_OUTCOME) == "STF_USERQUIT"
  384.             set Status = STATUS_USERCANCEL
  385.             goto finish_InstallOption
  386.         endif
  387.     endif
  388.  
  389.     ifstr(i) $(DoConfig) == "YES"
  390.  
  391.         ;
  392.         ; first run a privilege check on modifying the setup node
  393.         ;
  394.  
  395.         shell "registry.inf" CheckSetupModify
  396.         ifint $($ShellCode) != $(!SHELL_CODE_OK)
  397.             goto finish_InstallOption
  398.         endif
  399.  
  400.         ifstr(i) $($R0) != STATUS_SUCCESSFUL
  401.             goto finish_InstallOption
  402.         endif
  403.  
  404.         ;
  405.         ; first make a new video entry, the entry is created automatically
  406.         ; enabled
  407.         ;
  408.  
  409.         set ServiceNode   = $(MiniportDriver)
  410.         set ServiceBinary = %SystemRoot%\System32\drivers\#(Files-DisplayMiniportDrivers, $(MiniportDriver), 2)
  411.  
  412.         set ServicesValues   = { +
  413.                 {Type,           0, $(!REG_VT_DWORD),     $(Type)                  }, +
  414.                 {Start,          0, $(!REG_VT_DWORD),     $(!SERVICE_SYSTEM_START) }, +
  415.                 {Group,          0, $(!REG_VT_SZ),        $(Group)                 }, +
  416.                 {ErrorControl,   0, $(!REG_VT_DWORD),     $(ErrorControl)          }, +
  417.                 {Tag,            0, $(!REG_VT_DWORD),     $(Tag)                   }, +
  418.                 {BinaryPathName, 0, $(!REG_VT_EXPAND_SZ), $(ServiceBinary)         }  +
  419.                 }
  420.  
  421.         set ParametersValues = { +
  422.                 {InstalledDisplayDrivers,     0, $(!REG_VT_MULTI_SZ), $(InstalledDisplays) }, +
  423.                 {VgaCompatible,               0, $(!REG_VT_DWORD),    $(VgaCompatible)     }, +
  424.                 {DefaultSettings.BitsPerPel,  0, $(!REG_VT_DWORD),    $(BitsPerPel)        }, +
  425.                 {DefaultSettings.XResolution, 0, $(!REG_VT_DWORD),    $(XResolution)       }, +
  426.                 {DefaultSettings.YResolution, 0, $(!REG_VT_DWORD),    $(YResolution)       }  +
  427.                 }
  428.  
  429.         ifstr(i) $(VRefresh) != ""
  430.             set VRefreshValue = {DefaultSettings.VRefresh, 0, $(!REG_VT_DWORD), $(VRefresh)}
  431.             set ParametersValue = >($(ParametersValue), $(VRefreshValue))
  432.         endif
  433.  
  434.         ifstr(i) $(Interlaced) != ""
  435.             set InterlacedValue = {DefaultSettings.Interlaced, 0, $(!REG_VT_DWORD), $(Interlaced)}
  436.             set ParametersValue = >($(ParametersValue), $(InterlacedValue))
  437.         endif
  438.  
  439.         set DeviceValues     = {}
  440.         set EventLogValues   = { +
  441.                 {EventMessageFile, 0, $(!REG_VT_EXPAND_SZ), $(EventMessageFile) }, +
  442.                 {TypesSupported,   0, $(!REG_VT_DWORD),     $(TypesSupported)   }  +
  443.                 }
  444.  
  445.         shell "registry.inf"  MakeServicesEntry $(ServiceNode)      +
  446.                                                 $(ServicesValues)   +
  447.                                                 $(ParametersValues) +
  448.                                                 $(DeviceValues)     +
  449.                                                 $(EventLogValues)   +
  450.                                                 Device0
  451.  
  452.         ifint $($ShellCode) != $(!SHELL_CODE_OK)
  453.             Debug-Output "Couldn't execute MakeServicesEntry in registry.inf"
  454.             goto finish_InstallOption
  455.         endif
  456.  
  457.         ifstr(i) $($R0) != STATUS_SUCCESSFUL
  458.             Debug-Output "MakeServicesEntry failed for video"
  459.             goto finish_InstallOption
  460.         endif
  461.  
  462.         ;
  463.         ;
  464.         ; then disable the previous video entry
  465.         ;
  466.  
  467.         ifstr(i) $(CurrentEntry) != $(MiniportDriver)
  468.             ifstr(i) $(CurrentEntry) != VGA
  469.                 ifstr(i) $(CurrentEntry) != ""
  470.                     shell "registry.inf" ModifyServicesEntry $(CurrentEntry) $(!SERVICE_DISABLED)
  471.  
  472.                     ifint $($ShellCode) != $(!SHELL_CODE_OK)
  473.                         Debug-Output "Couldn't find DisableServicesEntry in registry.inf"
  474.                         goto errorconfig
  475.                     endif
  476.  
  477.                     ifstr(i) $($R0) != STATUS_SUCCESSFUL
  478.                         Debug-Output "DisableServices entry failed"
  479.                     endif
  480.                 endif
  481.             endif
  482.         endif
  483.  
  484.         goto configdone
  485.  
  486. errorconfig = +
  487.         ifstr(i) $(CurrentEntry) != $(MiniportDriver)
  488.             shell "registry.inf" ModifyServicesEntry $(MiniportDriver) $(!SERVICE_DISABLED)
  489.             ifstr(i) $(CurrentEntry) != ""
  490.                 shell "registry.inf" ModifyServicesEntry $(CurrentEntry) $(!SERVICE_SYSTEM_START)
  491.             endif
  492.         endif
  493.         goto finish_InstallOption
  494.  
  495. configdone = +
  496.  
  497.     endif
  498.  
  499.     set Status = STATUS_SUCCESSFUL
  500.  
  501. finish_InstallOption = +
  502.     ForListDo $(DrivesToFree)
  503.         LibraryProcedure STATUS,$(!LIBHANDLE), DeleteNetConnection $($) "TRUE"
  504.     EndForListDo
  505.  
  506.     Return $(Status)
  507.  
  508.  
  509. [Install-AddCopyOption]
  510.  
  511.     set STF_VITAL = ""
  512.     ;
  513.     ; Add the files to the copy list
  514.     ;
  515.     AddSectionKeyFileToCopyList   Files-DisplayMiniportDrivers   +
  516.                                   $(MiniportDriver)              +
  517.                                   $(SrcDir)                      +
  518.                                   $(!STF_WINDOWSSYSPATH)\drivers
  519.  
  520.     ForListDo $(InstalledDisplays)
  521.         AddSectionKeyFileToCopyList   Files-DisplayDLLs          +
  522.                                       $($)                       +
  523.                                       $(SrcDir)                  +
  524.                                       $(!STF_WINDOWSSYSPATH)
  525.  
  526.     EndForListDo
  527.  
  528.     exit
  529.  
  530.  
  531. [Install-DoCopyOption]
  532.  
  533.     ;
  534.     ; Copy files in the copy list
  535.     ;
  536.     CopyFilesInCopyList
  537.     exit
  538.  
  539. ;**************************************************************************
  540. ; PROGRESS GUAGE VARIABLES
  541. ;**************************************************************************
  542.  
  543. [ProgressCopyENG]
  544.     ProCaption   = "Windows NT Setup"
  545.     ProCancel    = "Cancel"
  546.     ProCancelMsg = "Windows NT is not correcly installed.  Are you sure you want "+
  547.                    "to cancel copying files?"
  548.     ProCancelCap = "Setup Message"
  549.     ProText1     = "Copying:"
  550.     ProText2     = "To:"
  551.  
  552. [StringsENG]
  553.     String1 = "Display"
  554.     String2 = "Please enter the full path to the OEM Display "+
  555.               "driver files.  Then choose Continue."
  556.  
  557. ;-----------------------------------------------------------------------
  558. ; SOURCE MEDIA DESCRIPTIONS
  559. ; -------------------------
  560. ; The OEM should list all the diskette labels here.  The source media
  561. ; description is used during copy to prompt the user for a diskette
  562. ; if the source is diskettes.
  563. ;
  564. ; Use 1 = "Diskette 1 Label" , TAGFILE = disk1
  565. ;     2 = "Diskette 2 Label" , TAGFILE = disk2
  566. ;     ...
  567. ;-----------------------------------------------------------------------
  568.  
  569. ;--------------------------------------------------------------------
  570. ; THE SECTIONS BELOW SHOULD BE AUTOMATICALLY GENERATED BY THE EXCEL
  571. ; SPREAD SHEETS
  572. ;--------------------------------------------------------------------
  573.  
  574. [Source Media Descriptions]
  575.     1  = "OEM DISK (VIDEO)"  , TAGFILE = disk1
  576.  
  577. [Files-DisplayDLLs]
  578. vga = 1,vga.dll , SIZE=999
  579. vga256 = 1,vga256.dll , SIZE=999
  580.  
  581. [Files-DisplayMiniportDrivers]
  582. avga = 1,avga.sys , SIZE=999
  583.