home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 2000 April
/
VPR0004B.BIN
/
DRIVER
/
EPSON
/
P640C
/
p640c.exe
/
DISK1
/
WINNT351
/
PRINTER.INF
Wrap
INI File
|
1999-10-27
|
25KB
|
598 lines
[Identification]
OptionType = PRINTER
[Options]
"EPSON LP-8600FX" = epgui12j, escpage, epgag12j
"EPSON LP-8400FX" = epgui12j, escpage, epgag12j
"EPSON LP-8300F" = epgui12j, escpage, epgag12j
"EPSON LP-1900" = epgui12j, escpage, epgag12j
"EPSON LP-8600F" = epgui12j, escpage, epgag12j
"EPSON LP-8400F" = epgui12j, escpage, epgag12j
"EPSON LP-8600" = epgui12j, escpage, epgag12j
"EPSON LP-8300S" = epgui12j, escpage, epgag12j
"EPSON LP-8400" = epgui12j, escpage, epgag12j
"EPSON LP-1800" = epgui12j, escpage, epgag12j
"EPSON LP-800" = epgui12j, escpage, epgag12j
"EPSON LP-9200SX" = epgui12j, escpage, epgag12j
"EPSON LP-9200S" = epgui12j, escpage, epgag12j
"EPSON LP-1700S" = epgui12j, escpage, epgag12j
"EPSON LP-8300" = epgui12j, escpage, epgag12j
"EPSON LP-9200" = epgui12j, escpage, epgag12j
"EPSON LP-1700" = epgui12j, escpage, epgag12j
"EPSON LP-8200" = epgui12j, escpage, epgag12j
[Identify]
read-syms Identification
set Status = STATUS_SUCCESSFUL
set Identifier = $(OptionType)
; set Media = #("Source Media Descriptions", 1, 1)
set Media = #("Source Media Descriptions", 2, 2)
Return $(Status) $(Identifier) $(Media)
[ReturnOptions]
set Status = STATUS_FAILED
set OptionList = {}
set OptionTextList = {}
set LanguageList = ^(LanguagesSupported, 1)
Ifcontains(i) $($0) in $(LanguageList)
goto returnoptions
else
set Status = STATUS_NOLANGUAGE
goto finish_ReturnOptions
endif
returnoptions = +
set OptionList = ^(Options, 0)
set OptionTextList = ^(OptionsText$($0), 1)
set Status = STATUS_SUCCESSFUL
finish_ReturnOptions = +
Return $(Status) $(OptionList) $(OptionTextList)
[InstallOption]
set Status = STATUS_FAILED
set Option = $($1)
set SrcDir = $($2)
; set AddCopy = $($3)
; set DoCopy = $($4)
; set DoConfig = $($5)
set AddCopy = "YES"
set DoCopy = "YES"
set DoConfig = "YES"
set LanguageList = ^(LanguagesSupported, 1)
Ifcontains(i) $($0) in $(LanguageList)
else
set Status = STATUS_NOLANGUAGE
goto finish_InstallOption
endif
read-syms Strings$($0)
set OptionList = ^(Options, 0)
ifcontains $(Option) in $(OptionList)
else
goto finish_InstallOption
endif
set OptionList = ""
set ConfigOption = #(Options, $(Option), 1)
set DataOption = #(Options, $(Option), 2)
set DriverOption = #(Options, $(Option), 3)
installtheoption = +
ifstr(i) $(AddCopy) == "YES"
install Install-AddCopyOption
ifstr(i) $(STF_INSTALL_OUTCOME) != "STF_SUCCESS"
Debug-Output "Adding video files to copy list failed"
goto finish_InstallOption
endif
endif
ifstr(i) $(DoCopy) == "YES"
read-syms ProgressCopy$($0)
install Install-DoCopyOption
ifstr(i) $(STF_INSTALL_OUTCOME) == "STF_FAILURE"
Debug-Output "Copying files failed"
goto finish_InstallOption
else-ifstr(i) $(STF_INSTALL_OUTCOME) == "STF_USERQUIT"
set Status = STATUS_USERCANCEL
goto finish_InstallOption
endif
endif
ifstr(i) $(DoConfig) == "YES"
set DriverPath = $(!STF_PRNDRIVERPATH)"\"#(Files-PrinterDriver, $(DriverOption), 2)
set DataFilePath = $(!STF_PRNDRIVERPATH)"\"#(Files-PrinterData, $(DataOption), 2)
set ConfigFilePath = $(!STF_PRNDRIVERPATH)"\"#(Files-PrinterConfig, $(ConfigOption), 2)
LibraryProcedure STATUS,$(!LIBHANDLE),CheckFileExistance $(DriverPath)
ifstr(i) $(STATUS) == YES
LibraryProcedure STATUS,$(!LIBHANDLE),CheckFileExistance $(DataFilePath)
ifstr(i) $(STATUS) == YES
LibraryProcedure STATUS,$(!LIBHANDLE),CheckFileExistance $(ConfigFilePath)
endif
endif
ifstr(i) $(STATUS) == NO
set OptionText = #(OptionsText$($0), $(Option), 1)
shell "subroutn.inf" SetupMessage $($0) "NONFATAL" $(String4)$(OptionText)$(String5)
Debug-Output "Copying printer files failed"
goto finish_InstallOption
endif
install Install-Configure
ifstr(i) $(STF_INSTALL_OUTCOME) == "STF_FAILURE"
Debug-Output "Installing printer driver failed"
goto finish_InstallOption
else-ifstr(i) $(STF_INSTALL_OUTCOME) == "STF_USERQUIT"
set Status = STATUS_USERCANCEL
goto finish_InstallOption
endif
ifstr(i) $(STATUS) != "ADDED"
set OptionText = #(OptionsText$($0), $(Option), 1)
ifstr(i) $(STATUS) == "PRESENT"
shell "subroutn.inf" SetupMessage $($0) "NONFATAL" $(String1)$(OptionText)$(String2)
set Status = STATUS_SUCCESSFUL
else-ifstr(i) $(STATUS) == "DENIED"
shell "subroutn.inf" SetupMessage $($0) "NONFATAL" $(String6)
else
shell "subroutn.inf" SetupMessage $($0) "NONFATAL" $(String1)$(OptionText)$(String7)
endif
goto finish_InstallOption
endif
endif
set Status = STATUS_SUCCESSFUL
finish_InstallOption = +
Return $(Status)
[Install-AddCopyOption]
set STF_VITAL = ""
; set STF_OVERWRITE = "VERIFYSOURCEOLDER"
set STF_OVERWRITE = "ALWAYS"
AddSectionKeyFileToCopyList Files-PrinterConfig +
$(ConfigOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-PrinterData +
$(DataOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-PrinterDriver +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-PrinterDriverHelpJ +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-PrinterDriverHelpJCnt +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-PrinterDriverHelpE +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-PrinterDriverHelpECnt +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-FormControler +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-FormHelpJ +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-FormHelpE +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-FormInitFile +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileControler +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileIndex +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileTable0 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileTable1 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileTable2 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileTable3 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileTable4 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileTable5 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileTable6 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileTable7 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileTable8 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileTable9 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileTable10 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileTable11 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileTable12 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileTable13 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileBitmap1 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileBitmap2 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileBitmap3 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileBitmap4 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileBitmap5 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileBitmap6 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileBitmap7 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileBitmap8 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileBitmap9 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileBitmap10 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileBitmap11 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileBitmap12 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
AddSectionKeyFileToCopyList Files-TagfileBitmap13 +
$(DriverOption) +
$(SrcDir) +
$(!STF_PRNDRIVERPATH)
exit
[Install-DoCopyOption]
CopyFilesInCopyList
exit
[Install-Configure]
set Model = $(Option)
set Driver = #(Files-PrinterDriver, $(DriverOption), 2)
set DataFile = #(Files-PrinterData, $(DataOption), 2)
set ConfigFile = #(Files-PrinterConfig, $(ConfigOption), 2)
LibraryProcedure STATUS,$(!LIBHANDLE), SetupAddPrinterDriver +
$(Model) +
$(!STF_PRNENVIRONM) +
$(Driver) +
$(DataFile) +
$(ConfigFile) +
$(!STF_PRINTSERVER)
exit
[ExternalInstallOption]
Set !G:DebugOutputControl = 0
set Exit_Code = $(!SETUP_ERROR_GENERAL)
set DrivesToFree = {}
install LoadSetupLibrary
ifstr(i) $(STF_LANGUAGE) == ""
goto end
else-ifstr(i) $(OPTION) == ""
goto end
else-ifstr(i) $(ADDCOPY) == ""
goto end
else-ifstr(i) $(DOCOPY) == ""
goto end
else-ifstr(i) $(DOCONFIG) == ""
goto end
endif
read-syms PlatformID
read-syms ProductType
ifstr(i) $(STF_PLATFORM) == $(PlatformID_I386)
set STF_PRNPLATFORM = "w32x86"
set STF_PRNENVIRONM = "Windows NT x86"
else-ifstr(i) $(STF_PLATFORM) == $(PlatformID_Mips)
set STF_PRNPLATFORM = "w32mips"
set STF_PRNENVIRONM = "Windows NT R4000"
else-ifstr(i) $(STF_PLATFORM) == $(PlatformID_Alpha)
set STF_PRNPLATFORM = "w32alpha"
set STF_PRNENVIRONM = "Windows NT Alpha_AXP"
else
goto end
endif
read-syms UiVars
detect UiVars
read-syms Strings$(STF_LANGUAGE)
ifstr(i) $(STF_SRCDIR) != $(STF_CWDDIR)
goto skip_asksource
endif
set STF_SRCDIR = A:\
shell "registry.inf" GetNTSource
ifint $($ShellCode) != $(!SHELL_CODE_OK)
else-ifstr(i) $($R0) != STATUS_SUCCESSFUL
else
set STF_SRCDIR = $($R1)
endif
shell "subroutn.inf" DoAskSource $(STF_SRCDIR)
ifint $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output "shelling DoAskSource failed"
goto end
endif
ifstr(i) $($R0) == STATUS_SUCCESSFUL
set STF_SRCDIR = $($R1)
ifstr(i) $($R2) != ""
set DrivesToFree = >($(DrivesToFree), $($R2))
endif
else
goto end
endif
skip_asksource = +
LibraryProcedure IsFullPath, $(!LIBHANDLE), CheckPathFullPathSpec $(STF_PRNDRIVERPATH)
ifstr(i) $(IsFullPath) == "NO"
LibraryProcedure STATUS, $(!LIBHANDLE), ProcessForUNC $(STF_PRNDRIVERPATH)
ifstr(i) $(STATUS) == "ERROR"
shell "subroutn.inf" SetupMessage $(!STF_LANGUAGE) "NONFATAL" $(String3)
goto end
else-ifstr(i) $(STATUS) == "NOT-UNC"
shell "subroutn.inf" SetupMessage $(!STF_LANGUAGE) "NONFATAL" $(String3)
goto end
else-ifstr(i) $(STATUS) == "UNC-FAILCONNECT"
shell "subroutn.inf" SetupMessage $(!STF_LANGUAGE) "NONFATAL" $(String3)
goto end
else
set STF_PRNDRIVERPATH = $(STATUS)
endif
endif
shell "" InstallOption $(STF_LANGUAGE) $(OPTION) $(STF_SRCDIR) $(ADDCOPY) $(DOCOPY) $(DOCONFIG)
ifint $($ShellCode) != $(!SHELL_CODE_OK)
Debug-Output "Execing InstallOption failed"
goto end
endif
ifstr(i) $($R0) == STATUS_SUCCESSFUL
set Exit_Code = $(!SETUP_ERROR_SUCCESS)
else-ifstr(i) $($R0) == STATUS_USERCANCEL
set Exit_Code = $(!SETUP_ERROR_USERCANCEL)
endif
end =+
ForListDo $(DrivesToFree)
LibraryProcedure STATUS,$(!LIBHANDLE), DeleteNetConnection $($) "TRUE"
EndForListDo
install FreeSetupLibrary
exit
[LoadSetupLibrary]
LoadLibrary "x" $(!STF_CWDDIR)setupdll.dll !LIBHANDLE
exit
[FreeSetupLibrary]
FreeLibrary $(!LIBHANDLE)
exit
[PlatformID]
PlatformID_I386 = I386
PlatformID_Mips = Mips
PlatformID_Alpha = Alpha
[UiVars]
STF_CONTROLSET = CurrentControlSet
STF_WINDOWSPATH = "" ? $(!LIBHANDLE) GetWindowsNtDir
STF_WINDOWSSYSPATH = "" ? $(!LIBHANDLE) GetWindowsNtSysDir
STF_PRNDRIVERPATH = "" ? $(!LIBHANDLE) GetPrinterDriverDir $(!STF_PRINTSERVER) $(!STF_PRNENVIRONM)
[Source Media Descriptions]
1 = "プリンタドライバユーティリティセットアップディスク1" , TAGFILE = disk1
7 = "プリンタドライバユーティリティセットアップディスク7" , TAGFILE = disk7
[Signature]
FileType = MICROSOFT_FILE
[GetSignature]
read-syms Signature
return $(FileType)
[ProductType]
STF_PRODUCT = Winnt
STF_PLATFORM = I386
[Files-PrinterConfig]
epgui12j = 7,EPGUI13J.DLL , SIZE=999
[Files-PrinterData]
escpage = 7,ESCPAGE , SIZE=999
[Files-PrinterDriver]
epgag12j = 7,EPGAG13J.DLL , SIZE=999
[Files-PrinterDriverHelpJ]
epgag12j = 7,EPGUI13J.HLP , SIZE=999
[Files-PrinterDriverHelpJCnt]
epgag12j = 7,EPGUI13J.CNT , SIZE=999
[Files-PrinterDriverHelpE]
epgag12j = 7,EPGUI13Z.HLP , SIZE=999
[Files-PrinterDriverHelpECnt]
epgag12j = 7,EPGUI13Z.CNT , SIZE=999
[Files-FormControler]
epgag12j = 7,EPFRM30J.DLL , SIZE=999
[Files-FormHelpJ]
epgag12j = 7,EPFRM3PJ.HLP , SIZE=999
[Files-FormHelpE]
epgag12j = 7,EPFRM3PE.HLP , SIZE=999
[Files-FormInitFile]
epgag12j = 7,EPF3DRV.INI , SIZE=999
[Files-TagfileControler]
epgag12j = 7,EPPTAG4.DLL , SIZE=999
[Files-TagfileIndex]
epgag12j = 7,EPPSTMPJ.DAT , SIZE=999
[Files-TagfileTable0]
epgag12j = 7,EPPUSJ0.STM , SIZE=999
[Files-TagfileTable1]
epgag12j = 7,EPPUSJ1.STM , SIZE=999
[Files-TagfileTable2]
epgag12j = 7,EPPUSJ2.STM , SIZE=999
[Files-TagfileTable3]
epgag12j = 7,EPPUSJ3.STM , SIZE=999
[Files-TagfileTable4]
epgag12j = 7,EPPUSJ4.STM , SIZE=999
[Files-TagfileTable5]
epgag12j = 7,EPPUSJ5.STM , SIZE=999
[Files-TagfileTable6]
epgag12j = 7,EPPUSJ6.STM , SIZE=999
[Files-TagfileTable7]
epgag12j = 7,EPPUSJ7.STM , SIZE=999
[Files-TagfileTable8]
epgag12j = 7,EPPUSJ8.STM , SIZE=999
[Files-TagfileTable9]
epgag12j = 7,EPPUSJ9.STM , SIZE=999
[Files-TagfileTable10]
epgag12j = 7,EPPUSJ10.STM , SIZE=999
[Files-TagfileTable11]
epgag12j = 7,EPPUSJ11.STM , SIZE=999
[Files-TagfileTable12]
epgag12j = 7,EPPUSJ12.STM , SIZE=999
[Files-TagfileTable13]
epgag12j = 7,EPPUSJ13.STM , SIZE=999
[Files-TagfileBitmap1]
epgag12j = 7,EPPSMJ01.SBF , SIZE=999
[Files-TagfileBitmap2]
epgag12j = 7,EPPSMJ02.SBF , SIZE=999
[Files-TagfileBitmap3]
epgag12j = 7,EPPSMJ03.SBF , SIZE=999
[Files-TagfileBitmap4]
epgag12j = 7,EPPSMJ04.SBF , SIZE=999
[Files-TagfileBitmap5]
epgag12j = 7,EPPSMJ05.SBF , SIZE=999
[Files-TagfileBitmap6]
epgag12j = 7,EPPSMJ06.SBF , SIZE=999
[Files-TagfileBitmap7]
epgag12j = 7,EPPSMJ07.SBF , SIZE=999
[Files-TagfileBitmap8]
epgag12j = 7,EPPSMJ08.SBF , SIZE=999
[Files-TagfileBitmap9]
epgag12j = 7,EPPSMJ09.SBF , SIZE=999
[Files-TagfileBitmap10]
epgag12j = 7,EPPSMJ10.SBF , SIZE=999
[Files-TagfileBitmap11]
epgag12j = 7,EPPSMJ11.SBF , SIZE=999
[Files-TagfileBitmap12]
epgag12j = 7,EPPSMJ12.SBF , SIZE=999
[Files-TagfileBitmap13]
epgag12j = 7,EPPSMJ13.SBF , SIZE=999
[Files-EPPFPJ0FRP]
epgag12j = 7,EPPFPJ0.FRP , SIZE=999
[Files-EPPFREPJDAT]
epgag12j = 7,EPPFREPJ.DAT , SIZE=999
[LanguagesSupported]
ENG
[OptionsTextENG]
"EPSON LP-8600FX" = "EPSON LP-8600FX"
"EPSON LP-8400FX" = "EPSON LP-8400FX"
"EPSON LP-1900" = "EPSON LP-1900"
"EPSON LP-8600F" = "EPSON LP-8600F"
"EPSON LP-8400F" = "EPSON LP-8400F"
"EPSON LP-8300F" = "EPSON LP-8300F"
"EPSON LP-8600" = "EPSON LP-8600"
"EPSON LP-8300S" = "EPSON LP-8300S"
"EPSON LP-8400" = "EPSON LP-8400"
"EPSON LP-1800" = "EPSON LP-1800"
"EPSON LP-800" = "EPSON LP-800"
"EPSON LP-9200SX" = "EPSON LP-9200SX"
"EPSON LP-9200S" = "EPSON LP-9200S"
"EPSON LP-1700S" = "EPSON LP-1700S"
"EPSON LP-8300" = "EPSON LP-8300"
"EPSON LP-9200" = "EPSON LP-9200"
"EPSON LP-1700" = "EPSON LP-1700"
"EPSON LP-8200" = "EPSON LP-8200"
[StringsENG]
String1 = "プリンタ"
String2 = " はすでに組み込まれています。"
String3 = "プリント サーバーへの接続に失敗しました。"
String4 = "プリンタ のドライバ ファイル"
String5 = "をコピーできませんでした。このプリンタの組み込みに失敗しました。"
String6 = "アクセスが拒否されました。この操作を行うには、管理者グループの"+
"メンバーとしてログオンしなければなりません。"
String7 = "を組み込むことができませんでした。"
[ProgressCopyENG]
ProCaption = "Windows NT セットアップ"
ProCancel = "キャンセル"
ProCancelMsg = "Windows NT は正しく組み込まれていません。"+
"ファイルのコピーを中止しますか?"
ProCancelCap = "セットアップ メッセージ"
ProText1 = "コピー元:"
ProText2 = "コピー先:"