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