home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2000 April / VPR0004B.BIN / DRIVER / EPSON / P640C / p640c.exe / DISK1 / WINNT351 / PRINTER.INF
INI File  |  1999-10-27  |  25KB  |  598 lines

  1. [Identification]
  2. OptionType = PRINTER
  3.  
  4. [Options]
  5. "EPSON LP-8600FX" = epgui12j, escpage, epgag12j
  6. "EPSON LP-8400FX" = epgui12j, escpage, epgag12j
  7. "EPSON LP-8300F"  = epgui12j, escpage, epgag12j
  8. "EPSON LP-1900"   = epgui12j, escpage, epgag12j
  9. "EPSON LP-8600F"  = epgui12j, escpage, epgag12j
  10. "EPSON LP-8400F"  = epgui12j, escpage, epgag12j
  11. "EPSON LP-8600"   = epgui12j, escpage, epgag12j
  12. "EPSON LP-8300S"  = epgui12j, escpage, epgag12j
  13. "EPSON LP-8400"   = epgui12j, escpage, epgag12j
  14. "EPSON LP-1800"   = epgui12j, escpage, epgag12j
  15. "EPSON LP-800"    = epgui12j, escpage, epgag12j
  16. "EPSON LP-9200SX" = epgui12j, escpage, epgag12j
  17. "EPSON LP-9200S"  = epgui12j, escpage, epgag12j
  18. "EPSON LP-1700S"  = epgui12j, escpage, epgag12j
  19. "EPSON LP-8300"   = epgui12j, escpage, epgag12j
  20. "EPSON LP-9200"   = epgui12j, escpage, epgag12j
  21. "EPSON LP-1700"   = epgui12j, escpage, epgag12j
  22. "EPSON LP-8200"   = epgui12j, escpage, epgag12j
  23.  
  24. [Identify]
  25.     read-syms Identification
  26.     set Status     = STATUS_SUCCESSFUL
  27.     set Identifier = $(OptionType)
  28. ;    set Media      = #("Source Media Descriptions", 1, 1)
  29.     set Media      = #("Source Media Descriptions", 2, 2)
  30.     Return $(Status) $(Identifier) $(Media)
  31. [ReturnOptions]
  32.     set Status        = STATUS_FAILED
  33.     set OptionList     = {}
  34.     set OptionTextList = {}
  35.     set LanguageList = ^(LanguagesSupported, 1)
  36.     Ifcontains(i) $($0) in $(LanguageList)
  37.         goto returnoptions
  38.     else
  39.         set Status = STATUS_NOLANGUAGE
  40.         goto finish_ReturnOptions
  41.     endif
  42. returnoptions = +
  43.     set OptionList     = ^(Options, 0)
  44.     set OptionTextList = ^(OptionsText$($0), 1)
  45.     set Status         = STATUS_SUCCESSFUL
  46. finish_ReturnOptions = +
  47.     Return $(Status) $(OptionList) $(OptionTextList)
  48. [InstallOption]
  49.     set Status   = STATUS_FAILED
  50.     set Option   = $($1)
  51.     set SrcDir   = $($2)
  52. ;    set AddCopy  = $($3)
  53. ;    set DoCopy   = $($4)
  54. ;    set DoConfig = $($5)
  55.     set AddCopy  = "YES"
  56.     set DoCopy   = "YES"
  57.     set DoConfig = "YES"
  58.     set LanguageList = ^(LanguagesSupported, 1)
  59.     Ifcontains(i) $($0) in $(LanguageList)
  60.     else
  61.         set Status = STATUS_NOLANGUAGE
  62.         goto finish_InstallOption
  63.     endif
  64.     read-syms Strings$($0)
  65.     set OptionList = ^(Options, 0)
  66.     ifcontains $(Option) in $(OptionList)
  67.     else
  68.         goto finish_InstallOption
  69.     endif
  70.     set OptionList = ""
  71.     set ConfigOption = #(Options, $(Option), 1)
  72.     set DataOption   = #(Options, $(Option), 2)
  73.     set DriverOption = #(Options, $(Option), 3)
  74. installtheoption = +
  75.     ifstr(i) $(AddCopy) == "YES"
  76.         install Install-AddCopyOption
  77.         ifstr(i) $(STF_INSTALL_OUTCOME) != "STF_SUCCESS"
  78.             Debug-Output "Adding video files to copy list failed"
  79.             goto finish_InstallOption
  80.         endif
  81.     endif
  82.     ifstr(i) $(DoCopy) == "YES"
  83.         read-syms ProgressCopy$($0)
  84.         install Install-DoCopyOption
  85.         ifstr(i) $(STF_INSTALL_OUTCOME) == "STF_FAILURE"
  86.             Debug-Output "Copying files failed"
  87.             goto finish_InstallOption
  88.         else-ifstr(i) $(STF_INSTALL_OUTCOME) == "STF_USERQUIT"
  89.             set Status = STATUS_USERCANCEL
  90.             goto finish_InstallOption
  91.         endif
  92.     endif
  93.     ifstr(i) $(DoConfig) == "YES"
  94.         set DriverPath      = $(!STF_PRNDRIVERPATH)"\"#(Files-PrinterDriver, $(DriverOption), 2)
  95.         set DataFilePath    = $(!STF_PRNDRIVERPATH)"\"#(Files-PrinterData,   $(DataOption),   2)
  96.         set ConfigFilePath  = $(!STF_PRNDRIVERPATH)"\"#(Files-PrinterConfig, $(ConfigOption), 2)
  97.         LibraryProcedure STATUS,$(!LIBHANDLE),CheckFileExistance $(DriverPath)
  98.         ifstr(i) $(STATUS) == YES
  99.             LibraryProcedure STATUS,$(!LIBHANDLE),CheckFileExistance $(DataFilePath)
  100.             ifstr(i) $(STATUS) == YES
  101.                 LibraryProcedure STATUS,$(!LIBHANDLE),CheckFileExistance $(ConfigFilePath)
  102.             endif
  103.         endif
  104.         ifstr(i) $(STATUS) == NO
  105.             set OptionText = #(OptionsText$($0), $(Option), 1)
  106.             shell "subroutn.inf" SetupMessage $($0) "NONFATAL" $(String4)$(OptionText)$(String5)
  107.             Debug-Output "Copying printer files failed"
  108.             goto finish_InstallOption
  109.         endif
  110.         install Install-Configure
  111.         ifstr(i) $(STF_INSTALL_OUTCOME) == "STF_FAILURE"
  112.             Debug-Output "Installing printer driver failed"
  113.             goto finish_InstallOption
  114.         else-ifstr(i) $(STF_INSTALL_OUTCOME) == "STF_USERQUIT"
  115.             set Status = STATUS_USERCANCEL
  116.             goto finish_InstallOption
  117.         endif
  118.         ifstr(i) $(STATUS) != "ADDED"
  119.             set OptionText = #(OptionsText$($0), $(Option), 1)
  120.             ifstr(i) $(STATUS) == "PRESENT"
  121.                 shell "subroutn.inf" SetupMessage $($0) "NONFATAL" $(String1)$(OptionText)$(String2)
  122.                 set Status = STATUS_SUCCESSFUL
  123.             else-ifstr(i) $(STATUS) == "DENIED"
  124.                 shell "subroutn.inf" SetupMessage $($0) "NONFATAL" $(String6)
  125.             else
  126.                 shell "subroutn.inf" SetupMessage $($0) "NONFATAL" $(String1)$(OptionText)$(String7)
  127.             endif
  128.             goto finish_InstallOption
  129.         endif
  130.     endif
  131.     set Status = STATUS_SUCCESSFUL
  132. finish_InstallOption = +
  133.     Return $(Status)
  134. [Install-AddCopyOption]
  135.     set STF_VITAL = ""
  136. ;    set STF_OVERWRITE   = "VERIFYSOURCEOLDER"
  137.     set STF_OVERWRITE   = "ALWAYS"
  138.     AddSectionKeyFileToCopyList   Files-PrinterConfig          +
  139.                                   $(ConfigOption)              +
  140.                                   $(SrcDir)                    +
  141.                                   $(!STF_PRNDRIVERPATH)
  142.     AddSectionKeyFileToCopyList   Files-PrinterData            +
  143.                                   $(DataOption)                +
  144.                                   $(SrcDir)                    +
  145.                                   $(!STF_PRNDRIVERPATH)
  146.     AddSectionKeyFileToCopyList   Files-PrinterDriver          +
  147.                                   $(DriverOption)              +
  148.                                   $(SrcDir)                    +
  149.                                   $(!STF_PRNDRIVERPATH)
  150.     AddSectionKeyFileToCopyList   Files-PrinterDriverHelpJ     +
  151.                                   $(DriverOption)              +
  152.                                   $(SrcDir)                    +
  153.                                   $(!STF_PRNDRIVERPATH)
  154.     AddSectionKeyFileToCopyList   Files-PrinterDriverHelpJCnt  +
  155.                                   $(DriverOption)              +
  156.                                   $(SrcDir)                    +
  157.                                   $(!STF_PRNDRIVERPATH)
  158.     AddSectionKeyFileToCopyList   Files-PrinterDriverHelpE     +
  159.                                   $(DriverOption)              +
  160.                                   $(SrcDir)                    +
  161.                                   $(!STF_PRNDRIVERPATH)
  162.     AddSectionKeyFileToCopyList   Files-PrinterDriverHelpECnt  +
  163.                                   $(DriverOption)              +
  164.                                   $(SrcDir)                    +
  165.                                   $(!STF_PRNDRIVERPATH)
  166.     AddSectionKeyFileToCopyList   Files-FormControler          +
  167.                                   $(DriverOption)              +
  168.                                   $(SrcDir)                    +
  169.                                   $(!STF_PRNDRIVERPATH)
  170.     AddSectionKeyFileToCopyList   Files-FormHelpJ              +
  171.                                   $(DriverOption)              +
  172.                                   $(SrcDir)                    +
  173.                                   $(!STF_PRNDRIVERPATH)
  174.     AddSectionKeyFileToCopyList   Files-FormHelpE              +
  175.                                   $(DriverOption)              +
  176.                                   $(SrcDir)                    +
  177.                                   $(!STF_PRNDRIVERPATH)
  178.     AddSectionKeyFileToCopyList   Files-FormInitFile           +
  179.                                   $(DriverOption)              +
  180.                                   $(SrcDir)                    +
  181.                                   $(!STF_PRNDRIVERPATH)
  182.     AddSectionKeyFileToCopyList   Files-TagfileControler       +
  183.                                   $(DriverOption)              +
  184.                                   $(SrcDir)                    +
  185.                                   $(!STF_PRNDRIVERPATH)
  186.     AddSectionKeyFileToCopyList   Files-TagfileIndex           +
  187.                                   $(DriverOption)              +
  188.                                   $(SrcDir)                    +
  189.                                   $(!STF_PRNDRIVERPATH)
  190.     AddSectionKeyFileToCopyList   Files-TagfileTable0          +
  191.                                   $(DriverOption)              +
  192.                                   $(SrcDir)                    +
  193.                                   $(!STF_PRNDRIVERPATH)
  194.     AddSectionKeyFileToCopyList   Files-TagfileTable1          +
  195.                                   $(DriverOption)              +
  196.                                   $(SrcDir)                    +
  197.                                   $(!STF_PRNDRIVERPATH)
  198.     AddSectionKeyFileToCopyList   Files-TagfileTable2          +
  199.                                   $(DriverOption)              +
  200.                                   $(SrcDir)                    +
  201.                                   $(!STF_PRNDRIVERPATH)
  202.     AddSectionKeyFileToCopyList   Files-TagfileTable3          +
  203.                                   $(DriverOption)              +
  204.                                   $(SrcDir)                    +
  205.                                   $(!STF_PRNDRIVERPATH)
  206.     AddSectionKeyFileToCopyList   Files-TagfileTable4          +
  207.                                   $(DriverOption)              +
  208.                                   $(SrcDir)                    +
  209.                                   $(!STF_PRNDRIVERPATH)
  210.     AddSectionKeyFileToCopyList   Files-TagfileTable5          +
  211.                                   $(DriverOption)              +
  212.                                   $(SrcDir)                    +
  213.                                   $(!STF_PRNDRIVERPATH)
  214.     AddSectionKeyFileToCopyList   Files-TagfileTable6          +
  215.                                   $(DriverOption)              +
  216.                                   $(SrcDir)                    +
  217.                                   $(!STF_PRNDRIVERPATH)
  218.     AddSectionKeyFileToCopyList   Files-TagfileTable7          +
  219.                                   $(DriverOption)              +
  220.                                   $(SrcDir)                    +
  221.                                   $(!STF_PRNDRIVERPATH)
  222.     AddSectionKeyFileToCopyList   Files-TagfileTable8          +
  223.                                   $(DriverOption)              +
  224.                                   $(SrcDir)                    +
  225.                                   $(!STF_PRNDRIVERPATH)
  226.     AddSectionKeyFileToCopyList   Files-TagfileTable9          +
  227.                                   $(DriverOption)              +
  228.                                   $(SrcDir)                    +
  229.                                   $(!STF_PRNDRIVERPATH)
  230.     AddSectionKeyFileToCopyList   Files-TagfileTable10         +
  231.                                   $(DriverOption)              +
  232.                                   $(SrcDir)                    +
  233.                                   $(!STF_PRNDRIVERPATH)
  234.     AddSectionKeyFileToCopyList   Files-TagfileTable11         +
  235.                                   $(DriverOption)              +
  236.                                   $(SrcDir)                    +
  237.                                   $(!STF_PRNDRIVERPATH)
  238.     AddSectionKeyFileToCopyList   Files-TagfileTable12         +
  239.                                   $(DriverOption)              +
  240.                                   $(SrcDir)                    +
  241.                                   $(!STF_PRNDRIVERPATH)
  242.     AddSectionKeyFileToCopyList   Files-TagfileTable13         +
  243.                                   $(DriverOption)              +
  244.                                   $(SrcDir)                    +
  245.                                   $(!STF_PRNDRIVERPATH)
  246.     AddSectionKeyFileToCopyList   Files-TagfileBitmap1         +
  247.                                   $(DriverOption)              +
  248.                                   $(SrcDir)                    +
  249.                                   $(!STF_PRNDRIVERPATH)
  250.     AddSectionKeyFileToCopyList   Files-TagfileBitmap2         +
  251.                                   $(DriverOption)              +
  252.                                   $(SrcDir)                    +
  253.                                   $(!STF_PRNDRIVERPATH)
  254.     AddSectionKeyFileToCopyList   Files-TagfileBitmap3         +
  255.                                   $(DriverOption)              +
  256.                                   $(SrcDir)                    +
  257.                                   $(!STF_PRNDRIVERPATH)
  258.     AddSectionKeyFileToCopyList   Files-TagfileBitmap4         +
  259.                                   $(DriverOption)              +
  260.                                   $(SrcDir)                    +
  261.                                   $(!STF_PRNDRIVERPATH)
  262.     AddSectionKeyFileToCopyList   Files-TagfileBitmap5         +
  263.                                   $(DriverOption)              +
  264.                                   $(SrcDir)                    +
  265.                                   $(!STF_PRNDRIVERPATH)
  266.     AddSectionKeyFileToCopyList   Files-TagfileBitmap6         +
  267.                                   $(DriverOption)              +
  268.                                   $(SrcDir)                    +
  269.                                   $(!STF_PRNDRIVERPATH)
  270.     AddSectionKeyFileToCopyList   Files-TagfileBitmap7         +
  271.                                   $(DriverOption)              +
  272.                                   $(SrcDir)                    +
  273.                                   $(!STF_PRNDRIVERPATH)
  274.     AddSectionKeyFileToCopyList   Files-TagfileBitmap8         +
  275.                                   $(DriverOption)              +
  276.                                   $(SrcDir)                    +
  277.                                   $(!STF_PRNDRIVERPATH)
  278.     AddSectionKeyFileToCopyList   Files-TagfileBitmap9         +
  279.                                   $(DriverOption)              +
  280.                                   $(SrcDir)                    +
  281.                                   $(!STF_PRNDRIVERPATH)
  282.     AddSectionKeyFileToCopyList   Files-TagfileBitmap10        +
  283.                                   $(DriverOption)              +
  284.                                   $(SrcDir)                    +
  285.                                   $(!STF_PRNDRIVERPATH)
  286.     AddSectionKeyFileToCopyList   Files-TagfileBitmap11        +
  287.                                   $(DriverOption)              +
  288.                                   $(SrcDir)                    +
  289.                                   $(!STF_PRNDRIVERPATH)
  290.     AddSectionKeyFileToCopyList   Files-TagfileBitmap12        +
  291.                                   $(DriverOption)              +
  292.                                   $(SrcDir)                    +
  293.                                   $(!STF_PRNDRIVERPATH)
  294.     AddSectionKeyFileToCopyList   Files-TagfileBitmap13        +
  295.                                   $(DriverOption)              +
  296.                                   $(SrcDir)                    +
  297.                                   $(!STF_PRNDRIVERPATH)
  298.     exit
  299. [Install-DoCopyOption]
  300.     CopyFilesInCopyList
  301.     exit
  302. [Install-Configure]
  303.     set Model       = $(Option)
  304.     set Driver      = #(Files-PrinterDriver, $(DriverOption), 2)
  305.     set DataFile    = #(Files-PrinterData,   $(DataOption),   2)
  306.     set ConfigFile  = #(Files-PrinterConfig, $(ConfigOption), 2)
  307.     LibraryProcedure STATUS,$(!LIBHANDLE), SetupAddPrinterDriver   +
  308.                                                $(Model)            +
  309.                                                $(!STF_PRNENVIRONM) +
  310.                                                $(Driver)           +
  311.                                                $(DataFile)         +
  312.                                                $(ConfigFile)       +
  313.                                                $(!STF_PRINTSERVER)
  314.     exit
  315. [ExternalInstallOption]
  316.     Set !G:DebugOutputControl = 0
  317.     set Exit_Code    = $(!SETUP_ERROR_GENERAL)
  318.     set DrivesToFree = {}
  319.     install LoadSetupLibrary
  320.     ifstr(i)      $(STF_LANGUAGE)  == ""
  321.         goto end
  322.     else-ifstr(i) $(OPTION)        == ""
  323.         goto end
  324.     else-ifstr(i) $(ADDCOPY)       == ""
  325.         goto end
  326.     else-ifstr(i) $(DOCOPY)        == ""
  327.         goto end
  328.     else-ifstr(i) $(DOCONFIG)      == ""
  329.         goto end
  330.     endif
  331.     read-syms PlatformID
  332.     read-syms ProductType
  333.     ifstr(i) $(STF_PLATFORM) == $(PlatformID_I386)
  334.         set STF_PRNPLATFORM = "w32x86"
  335.         set STF_PRNENVIRONM = "Windows NT x86"
  336.     else-ifstr(i) $(STF_PLATFORM) == $(PlatformID_Mips)
  337.         set STF_PRNPLATFORM = "w32mips"
  338.         set STF_PRNENVIRONM = "Windows NT R4000"
  339.     else-ifstr(i) $(STF_PLATFORM) == $(PlatformID_Alpha)
  340.         set STF_PRNPLATFORM = "w32alpha"
  341.         set STF_PRNENVIRONM = "Windows NT Alpha_AXP"
  342.     else
  343.         goto end
  344.     endif
  345.     read-syms UiVars
  346.     detect    UiVars
  347.     read-syms Strings$(STF_LANGUAGE)
  348.     ifstr(i) $(STF_SRCDIR) != $(STF_CWDDIR)
  349.         goto skip_asksource
  350.     endif
  351.     set STF_SRCDIR = A:\
  352.     shell "registry.inf" GetNTSource
  353.     ifint $($ShellCode) != $(!SHELL_CODE_OK)
  354.     else-ifstr(i) $($R0) != STATUS_SUCCESSFUL
  355.     else
  356.         set STF_SRCDIR = $($R1)
  357.     endif
  358.     shell "subroutn.inf" DoAskSource $(STF_SRCDIR)
  359.     ifint $($ShellCode) != $(!SHELL_CODE_OK)
  360.         Debug-Output "shelling DoAskSource failed"
  361.         goto end
  362.     endif
  363.     ifstr(i) $($R0) == STATUS_SUCCESSFUL
  364.         set STF_SRCDIR  = $($R1)
  365.         ifstr(i) $($R2) != ""
  366.             set DrivesToFree = >($(DrivesToFree), $($R2))
  367.         endif
  368.     else
  369.         goto end
  370.     endif
  371. skip_asksource = +
  372.     LibraryProcedure IsFullPath, $(!LIBHANDLE), CheckPathFullPathSpec $(STF_PRNDRIVERPATH)
  373.     ifstr(i) $(IsFullPath) == "NO"
  374.         LibraryProcedure STATUS, $(!LIBHANDLE), ProcessForUNC $(STF_PRNDRIVERPATH)
  375.         ifstr(i) $(STATUS) == "ERROR"
  376.             shell "subroutn.inf" SetupMessage $(!STF_LANGUAGE) "NONFATAL" $(String3)
  377.             goto end
  378.         else-ifstr(i) $(STATUS) == "NOT-UNC"
  379.             shell "subroutn.inf" SetupMessage $(!STF_LANGUAGE) "NONFATAL" $(String3)
  380.             goto end
  381.         else-ifstr(i) $(STATUS) == "UNC-FAILCONNECT"
  382.             shell "subroutn.inf" SetupMessage $(!STF_LANGUAGE) "NONFATAL" $(String3)
  383.             goto end
  384.         else
  385.             set STF_PRNDRIVERPATH = $(STATUS)
  386.         endif
  387.     endif
  388.     shell "" InstallOption $(STF_LANGUAGE) $(OPTION) $(STF_SRCDIR) $(ADDCOPY) $(DOCOPY) $(DOCONFIG)
  389.     ifint $($ShellCode) != $(!SHELL_CODE_OK)
  390.         Debug-Output "Execing InstallOption failed"
  391.         goto end
  392.     endif
  393.     ifstr(i) $($R0) == STATUS_SUCCESSFUL
  394.         set Exit_Code = $(!SETUP_ERROR_SUCCESS)
  395.     else-ifstr(i) $($R0) == STATUS_USERCANCEL
  396.         set Exit_Code = $(!SETUP_ERROR_USERCANCEL)
  397.     endif
  398. end =+
  399.     ForListDo $(DrivesToFree)
  400.         LibraryProcedure STATUS,$(!LIBHANDLE), DeleteNetConnection $($) "TRUE"
  401.     EndForListDo
  402.     install   FreeSetupLibrary
  403.     exit
  404. [LoadSetupLibrary]
  405.     LoadLibrary "x" $(!STF_CWDDIR)setupdll.dll !LIBHANDLE
  406.     exit
  407. [FreeSetupLibrary]
  408.     FreeLibrary $(!LIBHANDLE)
  409.     exit
  410. [PlatformID]
  411.     PlatformID_I386 = I386
  412.     PlatformID_Mips = Mips
  413.     PlatformID_Alpha  = Alpha
  414. [UiVars]
  415.     STF_CONTROLSET     = CurrentControlSet
  416.     STF_WINDOWSPATH    = "" ? $(!LIBHANDLE) GetWindowsNtDir
  417.     STF_WINDOWSSYSPATH = "" ? $(!LIBHANDLE) GetWindowsNtSysDir
  418.     STF_PRNDRIVERPATH  = "" ? $(!LIBHANDLE) GetPrinterDriverDir $(!STF_PRINTSERVER) $(!STF_PRNENVIRONM)
  419. [Source Media Descriptions]
  420.     1  = "プリンタドライバユーティリティセットアップディスク1"  , TAGFILE = disk1
  421.     7  = "プリンタドライバユーティリティセットアップディスク7"  , TAGFILE = disk7
  422. [Signature]
  423.     FileType = MICROSOFT_FILE
  424. [GetSignature]
  425.     read-syms Signature
  426.     return $(FileType)
  427.  
  428. [ProductType]
  429. STF_PRODUCT  = Winnt
  430. STF_PLATFORM = I386
  431. [Files-PrinterConfig]
  432. epgui12j = 7,EPGUI13J.DLL , SIZE=999
  433.  
  434. [Files-PrinterData]
  435. escpage  = 7,ESCPAGE      , SIZE=999
  436.  
  437. [Files-PrinterDriver]
  438. epgag12j = 7,EPGAG13J.DLL , SIZE=999
  439.  
  440. [Files-PrinterDriverHelpJ]
  441. epgag12j = 7,EPGUI13J.HLP , SIZE=999
  442.  
  443. [Files-PrinterDriverHelpJCnt]
  444. epgag12j = 7,EPGUI13J.CNT , SIZE=999
  445.  
  446. [Files-PrinterDriverHelpE]
  447. epgag12j = 7,EPGUI13Z.HLP , SIZE=999
  448.  
  449. [Files-PrinterDriverHelpECnt]
  450. epgag12j = 7,EPGUI13Z.CNT , SIZE=999
  451.  
  452. [Files-FormControler]
  453. epgag12j = 7,EPFRM30J.DLL , SIZE=999
  454.  
  455. [Files-FormHelpJ]
  456. epgag12j = 7,EPFRM3PJ.HLP , SIZE=999
  457.  
  458. [Files-FormHelpE]
  459. epgag12j = 7,EPFRM3PE.HLP , SIZE=999
  460.  
  461. [Files-FormInitFile]
  462. epgag12j = 7,EPF3DRV.INI  , SIZE=999
  463.  
  464. [Files-TagfileControler]
  465. epgag12j = 7,EPPTAG4.DLL  , SIZE=999
  466.  
  467. [Files-TagfileIndex]
  468. epgag12j = 7,EPPSTMPJ.DAT , SIZE=999
  469.  
  470. [Files-TagfileTable0]
  471. epgag12j = 7,EPPUSJ0.STM  , SIZE=999
  472.  
  473. [Files-TagfileTable1]
  474. epgag12j = 7,EPPUSJ1.STM  , SIZE=999
  475.  
  476. [Files-TagfileTable2]
  477. epgag12j = 7,EPPUSJ2.STM  , SIZE=999
  478.  
  479. [Files-TagfileTable3]
  480. epgag12j = 7,EPPUSJ3.STM  , SIZE=999
  481.  
  482. [Files-TagfileTable4]
  483. epgag12j = 7,EPPUSJ4.STM  , SIZE=999
  484.  
  485. [Files-TagfileTable5]
  486. epgag12j = 7,EPPUSJ5.STM  , SIZE=999
  487.  
  488. [Files-TagfileTable6]
  489. epgag12j = 7,EPPUSJ6.STM  , SIZE=999
  490.  
  491. [Files-TagfileTable7]
  492. epgag12j = 7,EPPUSJ7.STM  , SIZE=999
  493.  
  494. [Files-TagfileTable8]
  495. epgag12j = 7,EPPUSJ8.STM  , SIZE=999
  496.  
  497. [Files-TagfileTable9]
  498. epgag12j = 7,EPPUSJ9.STM  , SIZE=999
  499.  
  500. [Files-TagfileTable10]
  501. epgag12j = 7,EPPUSJ10.STM , SIZE=999
  502.  
  503. [Files-TagfileTable11]
  504. epgag12j = 7,EPPUSJ11.STM , SIZE=999
  505.  
  506. [Files-TagfileTable12]
  507. epgag12j = 7,EPPUSJ12.STM , SIZE=999
  508.  
  509. [Files-TagfileTable13]
  510. epgag12j = 7,EPPUSJ13.STM , SIZE=999
  511.  
  512. [Files-TagfileBitmap1]
  513. epgag12j = 7,EPPSMJ01.SBF , SIZE=999
  514.  
  515. [Files-TagfileBitmap2]
  516. epgag12j = 7,EPPSMJ02.SBF , SIZE=999
  517.  
  518. [Files-TagfileBitmap3]
  519. epgag12j = 7,EPPSMJ03.SBF , SIZE=999
  520.  
  521. [Files-TagfileBitmap4]
  522. epgag12j = 7,EPPSMJ04.SBF , SIZE=999
  523.  
  524. [Files-TagfileBitmap5]
  525. epgag12j = 7,EPPSMJ05.SBF , SIZE=999
  526.  
  527. [Files-TagfileBitmap6]
  528. epgag12j = 7,EPPSMJ06.SBF , SIZE=999
  529.  
  530. [Files-TagfileBitmap7]
  531. epgag12j = 7,EPPSMJ07.SBF , SIZE=999
  532.  
  533. [Files-TagfileBitmap8]
  534. epgag12j = 7,EPPSMJ08.SBF , SIZE=999
  535.  
  536. [Files-TagfileBitmap9]
  537. epgag12j = 7,EPPSMJ09.SBF , SIZE=999
  538.  
  539. [Files-TagfileBitmap10]
  540. epgag12j = 7,EPPSMJ10.SBF , SIZE=999
  541.  
  542. [Files-TagfileBitmap11]
  543. epgag12j = 7,EPPSMJ11.SBF , SIZE=999
  544.  
  545. [Files-TagfileBitmap12]
  546. epgag12j = 7,EPPSMJ12.SBF , SIZE=999
  547.  
  548. [Files-TagfileBitmap13]
  549. epgag12j = 7,EPPSMJ13.SBF , SIZE=999
  550.  
  551. [Files-EPPFPJ0FRP]
  552. epgag12j = 7,EPPFPJ0.FRP , SIZE=999
  553.  
  554. [Files-EPPFREPJDAT]
  555. epgag12j = 7,EPPFREPJ.DAT , SIZE=999
  556.  
  557. [LanguagesSupported]
  558.     ENG
  559.  
  560. [OptionsTextENG]
  561. "EPSON LP-8600FX" = "EPSON LP-8600FX"
  562. "EPSON LP-8400FX" = "EPSON LP-8400FX"
  563. "EPSON LP-1900"   = "EPSON LP-1900"
  564. "EPSON LP-8600F"  = "EPSON LP-8600F"
  565. "EPSON LP-8400F"  = "EPSON LP-8400F"
  566. "EPSON LP-8300F"  = "EPSON LP-8300F"
  567. "EPSON LP-8600"   = "EPSON LP-8600"
  568. "EPSON LP-8300S"  = "EPSON LP-8300S"
  569. "EPSON LP-8400"   = "EPSON LP-8400"
  570. "EPSON LP-1800"   = "EPSON LP-1800"
  571. "EPSON LP-800"    = "EPSON LP-800"
  572. "EPSON LP-9200SX" = "EPSON LP-9200SX"
  573. "EPSON LP-9200S"  = "EPSON LP-9200S"
  574. "EPSON LP-1700S"  = "EPSON LP-1700S"
  575. "EPSON LP-8300"   = "EPSON LP-8300"
  576. "EPSON LP-9200"   = "EPSON LP-9200"
  577. "EPSON LP-1700"   = "EPSON LP-1700"
  578. "EPSON LP-8200"   = "EPSON LP-8200"
  579.  
  580. [StringsENG]
  581. String1 = "プリンタ"
  582. String2 = " はすでに組み込まれています。"
  583. String3 = "プリント サーバーへの接続に失敗しました。"
  584. String4 = "プリンタ のドライバ ファイル"
  585. String5 = "をコピーできませんでした。このプリンタの組み込みに失敗しました。"
  586. String6 = "アクセスが拒否されました。この操作を行うには、管理者グループの"+
  587.           "メンバーとしてログオンしなければなりません。"
  588. String7 = "を組み込むことができませんでした。"
  589.  
  590. [ProgressCopyENG]
  591. ProCaption   = "Windows NT セットアップ"
  592. ProCancel    = "キャンセル"
  593. ProCancelMsg = "Windows NT は正しく組み込まれていません。"+
  594.                "ファイルのコピーを中止しますか?"
  595. ProCancelCap = "セットアップ メッセージ"
  596. ProText1     = "コピー元:"
  597. ProText2     = "コピー先:"
  598.