home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 July / VPR9707B.ISO / DRIVER / IODATA / VXGL351 / DISK.EXE / OEMSETUP.INF < prev    next >
INI File  |  1997-04-09  |  21KB  |  612 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.     "GA-PG3DVXx/PCI Display Adapter (with ICD)"        = s3mini,8, 640, 480, 60, 0
  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.     s3mini   = !SERVICE_KERNEL_DRIVER, Video, !SERVICE_ERROR_NORMAL, 11,  {s3ogl, igxogl}, 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.     "GA-PG3DVXx/PCI Display Adapter (with ICD)" = "GA-PG3DVXx/PCI Driver (with ICD)"
  101.  
  102.  
  103.  
  104. ;---------------------------------------------------------------------------
  105. ; 1. Identify
  106. ;
  107. ; DESCRIPTION:   To verify that this INF deals with the same type of options
  108. ;                as we are choosing currently.
  109. ;
  110. ; INPUT:         None
  111. ;
  112. ; OUTPUT:        $($R0): STATUS: STATUS_SUCCESSFUL
  113. ;                $($R1): Option Type (COMPUTER ...)
  114. ;                $($R2): Diskette description
  115. ;---------------------------------------------------------------------------
  116.  
  117. [Identify]
  118.     ;
  119.     ;
  120.     read-syms Identification
  121.  
  122.     set Status     = STATUS_SUCCESSFUL
  123.     set Identifier = $(OptionType)
  124.     set Media      = #("Source Media Descriptions", 1, 1)
  125.  
  126.     Return $(Status) $(Identifier) $(Media)
  127.  
  128.  
  129.  
  130. ;------------------------------------------------------------------------
  131. ; 2. ReturnOptions:
  132. ;
  133. ; DESCRIPTION:   To return the option list supported by this INF and the
  134. ;                localised text list representing the options.
  135. ;
  136. ;
  137. ; INPUT:         $($0):  Language used. ( ENG | FRN | ... )
  138. ;
  139. ; OUTPUT:        $($R0): STATUS: STATUS_SUCCESSFUL |
  140. ;                                STATUS_NOLANGUAGE
  141. ;                                STATUS_FAILED
  142. ;
  143. ;                $($R1): Option List
  144. ;                $($R2): Option Text List
  145. ;------------------------------------------------------------------------
  146.  
  147. [ReturnOptions]
  148.     ;
  149.     ;
  150.     set Status        = STATUS_FAILED
  151.     set OptionList     = {}
  152.     set OptionTextList = {}
  153.  
  154.     ;
  155.     ; Check if the language requested is supported
  156.     ;
  157.     set LanguageList = ^(LanguagesSupported, 1)
  158.     Ifcontains(i) $($0) in $(LanguageList)
  159.         goto returnoptions
  160.     else
  161.         set Status = STATUS_NOLANGUAGE
  162.         goto finish_ReturnOptions
  163.     endif
  164.  
  165.     ;
  166.     ; form a list of all the options and another of the text representing
  167.     ;
  168.  
  169. returnoptions = +
  170.     set OptionList     = ^(Options, 0)
  171.     set OptionTextList = ^(OptionsText$($0), 1)
  172.     set Status         = STATUS_SUCCESSFUL
  173.  
  174. finish_ReturnOptions = +
  175.     Return $(Status) $(OptionList) $(OptionTextList)
  176.  
  177.  
  178.  
  179. ;---------------------------------------------------------------------------
  180. ; MapToSupportedOption
  181. ;
  182. ; DESCRIPTION:   To map a hardware detected option to the NT Supported
  183. ;                option which represents it.
  184. ;
  185. ; INPUT:         $($0): Option
  186. ;
  187. ; OUTPUT:        $($R0): STATUS: STATUS_SUCCESSFUL
  188. ;                $($R1): Mapped Option
  189. ;
  190. ;---------------------------------------------------------------------------
  191.  
  192. [MapToSupportedOption]
  193.     ;
  194.     set Status = STATUS_FAILED
  195.     set MappedOption = $($0)
  196.  
  197.     ;
  198.     ; If the option is one we can support using one of our standard options
  199.     ; then map it to the standard option else map it to the default option
  200.     ; which is VGA.
  201.     ;
  202.  
  203.     set OptionList = ^(MapOfOptions, 0)
  204.     ifcontains $($0) in $(OptionList)
  205.         set MappedOption = #(MapOfOptions, $($0), 1)
  206.     else
  207.         set MappedOption = "VGA"
  208.     endif
  209.  
  210.     set Status = STATUS_SUCCESSFUL
  211.     Return $(Status) $(MappedOption)
  212.  
  213.  
  214.  
  215. [ServicesEntry]
  216.     CurrentEntry = "" ? $(!LIBHANDLE) GetDevicemapValue Video \Device\Video0
  217.  
  218.  
  219. ;
  220. ; InstallOption:
  221. ;
  222. ; FUNCTION:  To copy files representing Options
  223. ;            To configure the installed option
  224. ;            To update the registry for the installed option
  225. ;
  226. ; INPUT:     $($0):  Language to use
  227. ;            $($1):  OptionID to install
  228. ;            $($2):  SourceDirectory
  229. ;            $($3):  AddCopy  (YES | NO)
  230. ;            $($4):  DoCopy   (YES | NO)
  231. ;            $($5):  DoConfig (YES | NO)
  232. ;
  233. ; OUTPUT:    $($R0): STATUS: STATUS_SUCCESSFUL |
  234. ;                            STATUS_NOLANGUAGE |
  235. ;                            STATUS_USERCANCEL |
  236. ;                            STATUS_FAILED
  237. ;
  238.  
  239. [InstallOption]
  240.  
  241.     ;
  242.     ; Set default values for
  243.     ;
  244.     set Status       = STATUS_FAILED
  245.     set DrivesToFree = {}
  246.  
  247.     ;
  248.     ; extract parameters
  249.     ;
  250.     set Option   = $($1)
  251.     set SrcDir   = $($2)
  252.     set AddCopy  = $($3)
  253.     set DoCopy   = $($4)
  254.     set DoConfig = $($5)
  255.  
  256.     ;
  257.     ; Check if the language requested is supported
  258.     ;
  259.     set LanguageList = ^(LanguagesSupported, 1)
  260.     Ifcontains(i) $($0) in $(LanguageList)
  261.     else
  262.         set Status = STATUS_NOLANGUAGE
  263.         goto finish_InstallOption
  264.     endif
  265.     read-syms Strings$($0)
  266.  
  267.     ;
  268.     ; check to see if Option is supported.
  269.     ;
  270.  
  271.     set OptionList = ^(Options, 0)
  272.     ifcontains $(Option) in $(OptionList)
  273.     else
  274.         goto finish_InstallOption
  275.     endif
  276.     set OptionList = ""
  277.  
  278.     ;
  279.     ; Option has been defined already
  280.     ;
  281.     set MiniportDriver    = #(Options, $(Option), 1)
  282.     set BitsPerPel        = #(Options, $(Option), 2)
  283.     set XResolution       = #(Options, $(Option), 3)
  284.     set YResolution       = #(Options, $(Option), 4)
  285.     set VRefresh          = #(Options, $(Option), 5)
  286.     set Interlaced        = #(Options, $(Option), 6)
  287.  
  288.     set Type              = $(#(MiniportDrivers, $(MiniportDriver), 1))
  289.     set Group             =   #(MiniportDrivers, $(MiniportDriver), 2)
  290.     set ErrorControl      = $(#(MiniportDrivers, $(MiniportDriver), 3))
  291.     set Tag               =   #(MiniportDrivers, $(MiniportDriver), 4)
  292.     set InstalledDisplays =   #(MiniportDrivers, $(MiniportDriver), 5)
  293.     set VgaCompatible     =   #(MiniportDrivers, $(MiniportDriver), 6)
  294.     set EventMessageFile  =   #(MiniportDrivers, $(MiniportDriver), 7)
  295.     set TypesSupported    =   #(MiniportDrivers, $(MiniportDriver), 8)
  296.  
  297.     read-syms ServicesEntry
  298.     detect    ServicesEntry
  299.  
  300. installtheoption = +
  301.  
  302.     ;
  303.     ; Code to add files to copy list
  304.     ;
  305.  
  306.     ifstr(i) $(AddCopy) == "YES"
  307.         set DoActualCopy = NO
  308.         set FileToCheck = #(Files-DisplayMiniportDrivers, $(MiniportDriver), 2)
  309.         LibraryProcedure STATUS,$(!LIBHANDLE),CheckFileExistance $(!STF_WINDOWSSYSPATH)"\drivers\"$(FileToCheck)
  310.         ifstr(i) $(STATUS) == NO
  311.             set DoActualCopy = YES
  312.             goto addfiles
  313.         endif
  314.         ForListDo $(InstalledDisplays)
  315.             set FileToCheck = #(Files-DisplayDLLs, $($), 2)
  316.             LibraryProcedure STATUS,$(!LIBHANDLE),CheckFileExistance $(!STF_WINDOWSSYSPATH)"\"$(FileToCheck)
  317.             ifstr(i) $(STATUS) == NO
  318.                 set DoActualCopy = YES
  319.             endif
  320.         EndForListDo
  321.  
  322. addfiles = +
  323.         ifstr(i) $(DoActualCopy) == NO
  324.             shell "subroutn.inf" DriversExist $($0) $(String1)
  325.             ifint $($ShellCode) != $(!SHELL_CODE_OK)
  326.                 Debug-Output "VIDEO.INF: shelling DriversExist failed"
  327.                 goto finish_InstallOption
  328.             endif
  329.  
  330.             ifstr(i) $($R0) == STATUS_CURRENT
  331.             else-ifstr(i) $($R0) == STATUS_NEW
  332.                 set DoActualCopy = YES
  333.             else-ifstr(i) $($R0) == STATUS_USERCANCEL
  334.                 Debug-Output "VIDEO.INF: User cancelled video installation"
  335.                 goto finish_InstallOption
  336.             else
  337.                 Debug-Output "VIDEO.INF: Error reported in DriversExist routine in SUBROUTN.INF"
  338.                 goto finish_InstallOption
  339.             endif
  340.         endif
  341.  
  342.         ifstr(i) $(DoActualCopy) == YES
  343.  
  344.             shell "subroutn.inf" DoAskSourceEx $(SrcDir) $(String2)
  345.             ifint $($ShellCode) != $(!SHELL_CODE_OK)
  346.                 Debug-Output "VIDEO.INF: shelling DoAskSourceEx failed"
  347.                 goto finish_InstallOption
  348.             endif
  349.  
  350.             ifstr(i) $($R0) == STATUS_SUCCESSFUL
  351.                 set SrcDir = $($R1)
  352.                 ifstr(i) $($R2) != ""
  353.                     set DrivesToFree = >($(DrivesToFree), $($R2))
  354.                 endif
  355.             else
  356.                 Debug-Output "VIDEO.INF: User cancelled asking source."
  357.                 goto finish_InstallOption
  358.             endif
  359.  
  360.             install Install-AddCopyOption
  361.             ifstr(i) $(STF_INSTALL_OUTCOME) != "STF_SUCCESS"
  362.                 Debug-Output "VIDEO.INF: Adding video files to copy list failed"
  363.                 goto finish_InstallOption
  364.             endif
  365.         else
  366.             set DoCopy = NO
  367.         endif
  368.  
  369.     endif
  370.  
  371.     ifstr(i) $(DoCopy) == "YES"
  372.         read-syms ProgressCopy$($0)
  373.         install Install-DoCopyOption
  374.         ifstr(i) $(STF_INSTALL_OUTCOME) == "STF_FAILURE"
  375.             Debug-Output "Copying files failed"
  376.             goto finish_InstallOption
  377.         else-ifstr(i) $(STF_INSTALL_OUTCOME) == "STF_USERQUIT"
  378.             set Status = STATUS_USERCANCEL
  379.             goto finish_InstallOption
  380.         endif
  381.     endif
  382.  
  383.     ifstr(i) $(DoConfig) == "YES"
  384.  
  385.         ;
  386.         ; first run a privilege check on modifying the setup node
  387.         ;
  388.  
  389.         shell "registry.inf" CheckSetupModify
  390.         ifint $($ShellCode) != $(!SHELL_CODE_OK)
  391.             goto finish_InstallOption
  392.         endif
  393.  
  394.         ifstr(i) $($R0) != STATUS_SUCCESSFUL
  395.             goto finish_InstallOption
  396.         endif
  397.  
  398.         ;
  399.         ; first make a new video entry, the entry is created automatically
  400.         ; enabled
  401.         ;
  402.  
  403.         set ServiceNode   = $(MiniportDriver)
  404.         set ServiceBinary = %SystemRoot%\System32\drivers\#(Files-DisplayMiniportDrivers, $(MiniportDriver), 2)
  405.  
  406.         set ServicesValues   = { +
  407.                 {Type,           0, $(!REG_VT_DWORD),     $(Type)                  }, +
  408.                 {Start,          0, $(!REG_VT_DWORD),     $(!SERVICE_SYSTEM_START) }, +
  409.                 {Group,          0, $(!REG_VT_SZ),        $(Group)                 }, +
  410.                 {ErrorControl,   0, $(!REG_VT_DWORD),     $(ErrorControl)          }, +
  411.                 {Tag,            0, $(!REG_VT_DWORD),     $(Tag)                   }, +
  412.                 {BinaryPathName, 0, $(!REG_VT_EXPAND_SZ), $(ServiceBinary)         }  +
  413.                 }
  414.  
  415.         ; Added Device Description below -BBD
  416. ;       set DeviceDescription = $(!Option)
  417.         set DeviceDescription = "S3 Compatible Display Adapter"
  418.  
  419.         set ParametersValues = { +
  420.                 {"Device Description",        0, $(!REG_VT_SZ),       $(DeviceDescription) }, +
  421.                 {InstalledDisplayDrivers,     0, $(!REG_VT_MULTI_SZ), $(InstalledDisplays) }, +
  422.                 {VgaCompatible,               0, $(!REG_VT_DWORD),    $(VgaCompatible)     }, +
  423.                 {DefaultSettings.BitsPerPel,  0, $(!REG_VT_DWORD),    $(BitsPerPel)        }, +
  424.                 {DefaultSettings.XResolution, 0, $(!REG_VT_DWORD),    $(XResolution)       }, +
  425.                 {DefaultSettings.YResolution, 0, $(!REG_VT_DWORD),    $(YResolution)       }  +
  426.                 }
  427.  
  428.         ifstr(i) $(VRefresh) != ""
  429.             set VRefreshValue = {DefaultSettings.VRefresh, 0, $(!REG_VT_DWORD), $(VRefresh)}
  430.             set ParametersValue = >($(ParametersValue), $(VRefreshValue))
  431.         endif
  432.  
  433.         ifstr(i) $(Interlaced) != ""
  434.             set InterlacedValue = {DefaultSettings.Interlaced, 0, $(!REG_VT_DWORD), $(Interlaced)}
  435.             set ParametersValue = >($(ParametersValue), $(InterlacedValue))
  436.         endif
  437.  
  438.         set DeviceValues     = {}
  439.         set EventLogValues   = { +
  440.                 {EventMessageFile, 0, $(!REG_VT_EXPAND_SZ), $(EventMessageFile) }, +
  441.                 {TypesSupported,   0, $(!REG_VT_DWORD),     $(TypesSupported)   }  +
  442.                 }
  443.  
  444.         shell "registry.inf"  MakeServicesEntry $(ServiceNode)      +
  445.                                                 $(ServicesValues)   +
  446.                                                 $(ParametersValues) +
  447.                                                 $(DeviceValues)     +
  448.                                                 $(EventLogValues)   +
  449.                                                 Device0
  450.  
  451.         ifint $($ShellCode) != $(!SHELL_CODE_OK)
  452.             Debug-Output "Couldn't execute MakeServicesEntry in registry.inf"
  453.             goto finish_InstallOption
  454.         endif
  455.  
  456.         ifstr(i) $($R0) != STATUS_SUCCESSFUL
  457.             Debug-Output "MakeServicesEntry failed for video"
  458.             goto finish_InstallOption
  459.         endif
  460.  
  461.         ;
  462.         ;
  463.         ; then disable the previous video entry
  464.         ;
  465.  
  466.         ifstr(i) $(CurrentEntry) != $(MiniportDriver)
  467.             ifstr(i) $(CurrentEntry) != VGA
  468.                 ifstr(i) $(CurrentEntry) != ""
  469.                     shell "registry.inf" ModifyServicesEntry $(CurrentEntry) $(!SERVICE_DISABLED)
  470.  
  471.                     ifint $($ShellCode) != $(!SHELL_CODE_OK)
  472.                         Debug-Output "Couldn't find DisableServicesEntry in registry.inf"
  473.                         goto errorconfig
  474.                     endif
  475.  
  476.                     ifstr(i) $($R0) != STATUS_SUCCESSFUL
  477.                         Debug-Output "DisableServices entry failed"
  478.                     endif
  479.                 endif
  480.             endif
  481.         endif
  482.  
  483. ;
  484. ; Open GL registry entry
  485. ;
  486.         set KeyPath = { +
  487.                         {SOFTWARE,       0, $(MaskAllAccess)}, +
  488.                         {Microsoft,      0, $(MaskAllAccess)}, +
  489.                         {"Windows NT",   0, $(MaskAllAccess)}, +
  490.                         {CurrentVersion, 0, $(MaskAllAccess)}, +
  491.                         {OpenGLDrivers,  0, $(MaskAllAccess)}  +
  492.                       }
  493.                 set KeyName  = "s3ogl"
  494.                 set KeyData  = "igxogl"
  495.         set KeyValue = { +
  496.                          {$(KeyName), 0, $(!REG_VT_SZ), $(KeyData) } +
  497.                        }
  498.         shell "registry.inf" CreateKey $(!REG_H_LOCAL) $(KeyPath) $(KeyValue)
  499.         Debug-Output "just did an OGL section"
  500.         ifint $($ShellCode) != $(!SHELL_CODE_OK)
  501.             Debug-Output "Couldn't execute CreateKey in registry.inf"
  502.             goto errorconfig
  503.         endif
  504.         ifstr(i) $($R0) != STATUS_SUCCESSFUL
  505.             Debug-Output "CreateKey failed for OGLDrivers"
  506.             goto errorconfig
  507.         endif
  508.         Debug-Output "OEMSETUP.INF: success installing an ogl entry"
  509.  
  510.         goto configdone
  511.  
  512. errorconfig = +
  513.         ifstr(i) $(CurrentEntry) != $(MiniportDriver)
  514.             shell "registry.inf" ModifyServicesEntry $(MiniportDriver) $(!SERVICE_DISABLED)
  515.             ifstr(i) $(CurrentEntry) != ""
  516.                 shell "registry.inf" ModifyServicesEntry $(CurrentEntry) $(!SERVICE_SYSTEM_START)
  517.             endif
  518.         endif
  519.         goto finish_InstallOption
  520.  
  521. configdone = +
  522.  
  523.     endif
  524.  
  525.     set Status = STATUS_SUCCESSFUL
  526.  
  527. finish_InstallOption = +
  528.     ForListDo $(DrivesToFree)
  529.         LibraryProcedure STATUS,$(!LIBHANDLE), DeleteNetConnection $($) "TRUE"
  530.     EndForListDo
  531.  
  532.     Return $(Status)
  533.  
  534.  
  535. [Install-AddCopyOption]
  536.  
  537.     set STF_VITAL = ""
  538.     ;
  539.     ; Add the files to the copy list
  540.     ;
  541.     AddSectionKeyFileToCopyList   Files-DisplayMiniportDrivers   +
  542.                                   $(MiniportDriver)              +
  543.                                   $(SrcDir)                      +
  544.                                   $(!STF_WINDOWSSYSPATH)\drivers
  545.  
  546.     ForListDo $(InstalledDisplays)
  547.         AddSectionKeyFileToCopyList   Files-DisplayDLLs          +
  548.                                       $($)                       +
  549.                                       $(SrcDir)                  +
  550.                                       $(!STF_WINDOWSSYSPATH)
  551.  
  552.     EndForListDo
  553.  
  554.     exit
  555.  
  556.  
  557. [Install-DoCopyOption]
  558.  
  559.     ;
  560.     ; Copy files in the copy list
  561.     ;
  562.     CopyFilesInCopyList
  563.     exit
  564.  
  565. ;**************************************************************************
  566. ; PROGRESS GUAGE VARIABLES
  567. ;**************************************************************************
  568.  
  569. [ProgressCopyENG]
  570.     ProCaption   = "Windows NT セットアップ"
  571.     ProCancel    = "キャンセル"
  572.     ProCancelMsg = "Windows NT は正しく組み込まれていません。"+
  573.                    "ファイルのコピーを中止しますか?"
  574.     ProCancelCap = "セットアップ メッセージ"
  575.     ProText1     = "コピー元:"
  576.     ProText2     = "コピー先:"
  577.  
  578.  
  579. [StringsENG]
  580.     String1 = "ディスプレイ"
  581.     String2 = "Windows ディスプレイドライバファイルのパス名を入力してください。"+
  582.               "その後、[続行]を押します。"
  583.  
  584. ;-----------------------------------------------------------------------
  585. ; SOURCE MEDIA DESCRIPTIONS
  586. ; -------------------------
  587. ; The OEM should list all the diskette labels here.  The source media
  588. ; description is used during copy to prompt the user for a diskette
  589. ; if the source is diskettes.
  590. ;
  591. ; Use 1 = "Diskette 1 Label" , TAGFILE = disk1
  592. ;     2 = "Diskette 2 Label" , TAGFILE = disk2
  593. ;     ...
  594. ;-----------------------------------------------------------------------
  595.  
  596. ;--------------------------------------------------------------------
  597. ; THE SECTIONS BELOW SHOULD BE AUTOMATICALLY GENERATED BY THE EXCEL
  598. ; SPREAD SHEETS
  599. ;--------------------------------------------------------------------
  600.  
  601. [Source Media Descriptions]
  602.     1  = "GA-PG3DVXx/PCI Driver " 
  603.     ;; ,
  604.     ;;## TAGFILE = disk1
  605.  
  606. [Files-DisplayDLLs]
  607. s3ogl = 1,s3ogl.dll , SIZE=999
  608. igxogl = 1,igxogl.dll, SIZE=999
  609.  
  610. [Files-DisplayMiniportDrivers]
  611. s3mini = 1,s3mini.sys , SIZE=999
  612.