home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / d / d423_liu / 8.ddi / OEMNADDI.IN_ / OEMNADDI.IN
Encoding:
INI File  |  1993-07-24  |  17.6 KB  |  475 lines

  1. [Identification]
  2.     OptionType = NetAdapter
  3. [PlatformsSupported]
  4.     ISA
  5.     EISA
  6.     MCA
  7.     "Jazz-Internal Bus"
  8. [LanguagesSupported]
  9.     ENG
  10. [Options]
  11.     PCIMACISA
  12.     PCIMAC/4
  13. [FileConstants]
  14. UtilityInf      = "UTILITY.INF"
  15. ParamInf        = "NCPARAM.INF"
  16. subroutineinf   = "SUBROUTN.INF"
  17. SoftwareType    = "driver"
  18. Exit_Code       = 0
  19. DIGIHANDLE = 0
  20. NetEventDLL     = "%SystemRoot%\System32\netevent.dll"
  21. IoLogMsgDLL     = "%SystemRoot%\System32\IoLogMsg.dll"
  22. Manufacturer    = "DigiBoard"
  23. ProductMajorVersion     = "1"
  24. ProductMinorVersion     = "0"
  25. ProductVersion  = $(ProductMajorVersion)"."$(ProductMinorVersion)
  26. ProductSoftwareName     = "Pcimac"
  27. ProductSoftwareTitle    = "DigiBoard ISDN Adapter Driver"
  28. ProductSoftwareImagePath = "\SystemRoot\System32\drivers\pcimac.sys"
  29. NetRuleSoftwareType     = "pcimacSys ndisDriver pcimacDriver"
  30. NetRuleSoftwareUse      = $(SoftwareType)
  31. NetRuleSoftwareBindForm = """PcimacSys"" yes no container"
  32. NetRuleSoftwareClass    = {"pcimacDriver basic"}
  33. NetRuleSoftwareBindable = {"pcimacDriver pcimacAdapter non exclusive 100"}
  34. ProductHardwareName     = "Pcimac"
  35. ProductHardwareTitle    = "DigiBoard ISDN Adapter"
  36. NetRuleHardwareType     = "pcimac pcimacAdapter"
  37. NetRuleHardwareBindForm = " yes yes container"
  38. NetRuleHardwareClass    = {"pcimacAdapter basic"}
  39. ProductKeyName  = $(!NTN_SoftwareBase)"\"$(Manufacturer)"\"$(ProductSoftwareName)"\CurrentVersion"
  40. ParamKeyName    = $(!NTN_ServiceBase)"\"$(ProductHardwareName)"\Parameters"
  41. [GeneralConstants]
  42. !DebugOutputControl = 1
  43. from      = ""
  44. to        = ""
  45. ExitCodeOk     = 0
  46. ExitCodeCancel = 1
  47. ExitCodeFatal  = 2
  48. KeyNull         = ""
  49. MAXIMUM_ALLOWED   = 33554432
  50. RegistryErrorIndex = NO_ERROR
  51. KeyProduct      = ""
  52. KeyParameters   = ""
  53. TRUE            = 1
  54. FALSE           = 0
  55. NoTitle            = 0
  56. ExitState   = "Active"
  57. OldVersionExisted = $(FALSE)
  58. DriverPath      = $(!STF_NTPATH)\drivers
  59. [date]
  60.     Now = {} ? $(!LIBHANDLE) GetSystemDate
  61. [Identify]
  62.     read-syms Identification
  63.     set Status     = STATUS_SUCCESSFUL
  64.     set Identifier = $(OptionType)
  65.     set Media      = #("Source Media Descriptions", 1, 1)
  66.     Return $(Status) $(Identifier) $(Media)
  67. [ReturnOptions]
  68.     set Status        = STATUS_FAILED
  69.     set OptionList     = {}
  70.     set OptionTextList = {}
  71.     set LanguageList = ^(LanguagesSupported, 1)
  72.     Ifcontains(i) $($0) in $(LanguageList)
  73.         ifstr(i) $($1) == ""
  74.                         goto returnoptions
  75.         endif
  76.         set PlatformList = ^(PlatformsSupported, 1)
  77.         Ifcontains(i) $($1) in $(PlatformList)
  78.                         goto returnoptions
  79.         else
  80.                         set Status = STATUS_NOTSUPPORTED
  81.                         goto finish_ReturnOptions
  82.         endif
  83.     else
  84.                 set Status = STATUS_NOLANGUAGE
  85.                 goto finish_ReturnOptions
  86.     endif
  87. returnoptions = +
  88.     set OptionList     = ^(Options, 1)
  89.     set OptionTextList = ^(OptionsText$($0), 1)
  90.     set Status         = STATUS_SUCCESSFUL
  91. finish_ReturnOptions = +
  92.     Return $(Status) $(OptionList) $(OptionTextList)
  93. [InstallOption]
  94.     set Status   = STATUS_FAILED
  95.     set Option   = $($1)
  96.     set SrcDir   = $($2)
  97.     set AddCopy  = $($3)
  98.     set DoCopy   = $($4)
  99.     set DoConfig = $($5)
  100.     set LanguageList = ^(LanguagesSupported, 1)
  101.     Ifcontains(i) $($0) NOT-IN $(LanguageList)
  102.         Return STATUS_NOLANGUAGE
  103.     endif
  104.     set-subst LF = "\n"
  105.     read-syms GeneralConstants
  106.     read-syms FileConstants
  107.     ifstr(i) $(!NTN_Origination) == "NCPA"
  108.         set Continue = "OK"
  109.     endif
  110.     read-syms FileConstants$(!STF_LANGUAGE)
  111.     detect date
  112.     set-title  $(FunctionTitle)
  113.     set to   = Begin
  114.     set from = Begin
  115.     set CommonStatus = STATUS_SUCCESSFUL
  116.     EndWait
  117. Begin = +
  118.     set Result = {}
  119.     Set ActivateDetection = FALSE
  120.     Shell $(UtilityInf), GetBusTypeNum
  121.     set BusTypeNum = $($R1)
  122.     Ifstr(i) $(!NTN_InstallMode) == deinstall
  123.         set StartLabel = removeadapter
  124.     else-Ifstr(i) $(!NTN_InstallMode) == Update
  125.         set StartLabel = UpgradeSoftware
  126.     else-Ifstr(i) $(!NTN_InstallMode) == bind
  127.         set StartLabel = bindingadapter
  128.     else-Ifstr(i) $(!NTN_InstallMode) == configure
  129.         set StartLabel = configureadapter
  130.         Ifstr(i) $(ProductKeyName) == $(!NTN_RegBase)
  131.             Debug-Output "Cannot configure the PCIMAC driver software."
  132.             Shell $(UtilityInf),RegistryErrorString,CANNOT_CONFIGURE_SOFTWARE
  133.             ifint $($ShellCode) != $(!SHELL_CODE_OK)
  134.                 Debug-Output "ShellCode error: cannot get an error string."
  135.                 goto ShellCodeError
  136.             endif
  137.             set Error = $($R0)
  138.             set from = end
  139.             set to = end
  140.             goto nonfatalinfo
  141.         endif
  142.     else
  143.         set ActivateDetection = TRUE
  144.         set StartLabel = installadapter
  145.         set OEM_ABANDON_OPTIONS = {}
  146.         set OEM_ABANDON_SOFTWARE = FALSE
  147.         set OEM_ABANDON_ON = TRUE
  148.     endif
  149.     Debug-Output "OEMNADDI.INF: =================================================="
  150.     Debug-Output "OEMNADDI.INF: STF_CWDDIR is: "$(!STF_CWDDIR)
  151.     Debug-Output "OEMNADDI.INF: STF_LANGUAGE is: "$(!STF_LANGUAGE)
  152.     Debug-Output "OEMNADDI.INF: Option is: "$(Option)
  153.     Debug-Output "OEMNADDI.INF: SrcDir is: "$(SrcDir)
  154.     Debug-Output "OEMNADDI.INF: !STF_NCDETECT  is: "$(!STF_NCDETECT)
  155.     Debug-Output "OEMNADDI.INF: !STF_NCOPTION  is: "$(!STF_NCOPTION)
  156.     Debug-Output "OEMNADDI.INF: !STF_NCDETCARD is: "$(!STF_NCDETCARD)
  157.     Debug-Output "OEMNADDI.INF: !STF_NCDETINFO is: "$(!STF_NCDETINFO)
  158.     Debug-Output "OEMNADDI.INF: BusTypeNum is: "$(BusTypeNum)
  159.     Debug-Output "OEMNADDI.INF: =================================================="
  160.     Set DetectedCard = FALSE
  161.     Ifstr(i) $(ActivateDetection) != TRUE
  162.         Goto $(StartLabel)
  163.     Endif
  164. installadapter = +
  165.     OpenRegKey $(!REG_H_LOCAL) "" $(ProductKeyName) $(MAXIMUM_ALLOWED) KeyProduct
  166.     Debug-Output "OEMNADDI.INF: KeyProduct "$(KeyProduct)
  167.     Ifstr $(KeyProduct) != $(KeyNull)
  168.         CloseRegKey $(KeyProduct)
  169.         ifstr(i) !(NTN_RegBase) == $(ProductKeyName)
  170.            Shell $(UtilityInf), VerExistedDlg, $(ProductSoftwareTitle),+
  171.                $(ProductVersion)
  172.            ifint $($ShellCode) != $(!SHELL_CODE_OK)
  173.                Debug-Output "ShellCode error: cannot get an error string."
  174.                goto ShellCodeError
  175.            endif
  176.            goto end
  177.         else
  178.            Shell $(UtilityInf), CardExistedDlg
  179.            ifint $($ShellCode) != $(!SHELL_CODE_OK)
  180.                Debug-Output "ShellCode error: cannot get an error string."
  181.                goto ShellCodeError
  182.            endif
  183.            ifstr(i) $($R1) != "OK"
  184.                goto end
  185.            endif
  186.            set OldVersionExisted = $(TRUE)
  187.         endif
  188.     endif
  189.     goto adapteroptions
  190. configureadapter = +
  191.         Debug-Output "OEMNADDI.INF: Configure Adapter"
  192. adapteroptions = +
  193.     StartWait
  194.     ifint $(OldVersionExisted) == $(FALSE)
  195.         ifstr(i) $(!NTN_InstallMode) == "install"
  196.            Ifstr(i) $(DoCopy) == "YES"
  197.               Shell $(UtilityInf), DoAskSource, $(!STF_CWDDIR), $(SrcDir) YES
  198.               Ifint $($ShellCode) != $(!SHELL_CODE_OK)
  199.                   Goto ShellCodeError
  200.               Else-Ifstr(i) $($R0) == STATUS_FAILED
  201.                   Shell $(UtilityInf) RegistryErrorString "ASK_SOURCE_FAIL"
  202.                   ifint $($ShellCode) != $(!SHELL_CODE_OK)
  203.                       goto ShellCodeError
  204.                   endif
  205.                   set Error = $($R0)
  206.                   Goto fatal
  207.               Else-Ifstr(i) $($R0) == STATUS_USERCANCEL
  208.                   Goto successful
  209.               Endif
  210.               Set SrcDir = $($R1)
  211.            Endif
  212.            install "Install-Option"
  213.            ifstr(i) $(STF_INSTALL_OUTCOME) != STF_SUCCESS
  214.               Shell $(UtilityInf) RegistryErrorString "UNABLE_COPY_FILE"
  215.               ifint $($ShellCode) != $(!SHELL_CODE_OK)
  216.                   goto ShellCodeError
  217.               endif
  218.               set Error = $($R0)
  219.               goto fatal
  220.            endif
  221.         endif
  222.     endif
  223.     Debug-Output "OEMNADDI.INF: RegBase "$(!NTN_RegBase)
  224.     LoadLibrary "x" $(!STF_CWDDIR)setupdll.dll !LIBHANDLE
  225.     Debug-Output "OEMNADDI.INF: LIBHANDLE is "$(!LIBHANDLE)
  226.     LoadLibrary "x" $(!STF_CWDDIR)digiinst.dll DIGIHANDLE
  227.     Debug-Output "OEMNADDI.INF: DIGIHANDLE is "$(DIGIHANDLE)
  228.     LibraryProcedure Result, $(DIGIHANDLE), DigiEntry, $(!STF_HWND) $(Option) $(!NTN_InstallMode) $(!NTN_RegBase) $(BusTypeNum)
  229.     Debug-Output "OEMNADDI.INF: Dialog Result is "$(Result)
  230.     Ifstr(i) $(Result) == Success
  231.         goto successful
  232.     else-Ifstr(i) $(Result) == Cancel
  233.         goto cancel
  234.     else-Ifstr(i) $(Result) == Error
  235.         goto fatal
  236. bindingadapter =+
  237.     set Error = "Binding: Sorry, not yet implemented."
  238.     goto fatal
  239. removeadapter = +
  240.         Debug-Output "OEMNADDI.INF: RegBase "$(!NTN_RegBase)
  241.         LoadLibrary "x" $(!STF_CWDDIR)setupdll.dll !LIBHANDLE
  242.         Debug-Output "OEMNADDI.INF: LIBHANDLE is "$(!LIBHANDLE)
  243.         LoadLibrary "x" $(!STF_CWDDIR)digiinst.dll DIGIHANDLE
  244.         Debug-Output "OEMNADDI.INF: DIGIHANDLE is "$(DIGIHANDLE)
  245.         LibraryProcedure Result, $(DIGIHANDLE), DigiEntry, $(!STF_HWND) $(Option) $(!NTN_InstallMode) $(!NTN_RegBase) $(BusTypeNum)
  246.         goto end
  247. UpgradeSoftware = +
  248.     ifstr(i) $(ProductKeyName) == $(!NTN_RegBase)
  249.         OpenRegKey $(!REG_H_LOCAL) "" $(ProductKeyName) $(MAXIMUM_ALLOWED) KeyProduct
  250.         Ifstr $(KeyProduct) != $(KeyNull)
  251.             GetRegValue $(KeyProduct),"MajorVersion", VersionInfo
  252.             set Version = *($(VersionInfo), 4)
  253.             Split-String $(!NTN_Infname), "\", FilenameList
  254.             QueryListSize ListSize $(FilenameList)
  255.             set !UG_Filename = *($(FilenameList), $(ListSize))
  256.             install "Install-Update"
  257.             ifstr(i) $(STF_INSTALL_OUTCOME) != STF_SUCCESS
  258.                 goto fatal
  259.             endif
  260.             SetRegValue $(KeyProduct) {MajorVersion,$(NoTitle),$(!REG_VT_SZ),$(ProductMajorVersion)}
  261.             SetRegValue $(KeyProduct) {MinorVersion,$(NoTitle),$(!REG_VT_SZ),$(ProductMinorVersion)}
  262.             ifint $(Version) != $(ProductVersion)
  263.             endif
  264.             CloseRegKey $(KeyProduct)
  265.         else
  266.             goto fatalregistry
  267.         endif
  268.     else
  269.         OpenRegKey $(!REG_H_LOCAL) "" $(!NTN_RegBase) +
  270.               $(MAXIMUM_ALLOWED) NetworkCardKey
  271.         Ifstr(i) $(NetworkCardKey) != $(KeyNull)
  272.             GetRegValue $(NetworkCardKey),"ServiceName", ServiceNameInfo
  273.             set ServiceName = *($(ServiceNameInfo), 4)
  274.             OpenRegKey $(NetworkCardKey) "" "NetRules" +
  275.                 $(MAXIMUM_ALLOWED) NetRuleKey
  276.             Ifstr(i) $(NetRuleKey) != $(KeyNull)
  277.             else
  278.                 goto fatalregistry
  279.             endif
  280.             CloseRegKey $(NetRules)
  281.             CloseRegKey $(NetworkCardKey)
  282.         else
  283.             goto fatalregistry
  284.         endif
  285.         OpenRegKey $(!REG_H_LOCAL) "" +
  286.               $(!NTN_ServiceBase)"\"$(ServiceName) +
  287.               $(MAXIMUM_ALLOWED) ServiceKey
  288.         Ifstr(i) $(ServiceKey) != $(KeyNull)
  289.             CloseRegKey $(ServiceKey)
  290.         else
  291.             goto fatalregistry
  292.         endif
  293.     endif
  294.     goto end
  295. successful = +
  296.     set CommonStatus = STATUS_SUCCESSFUL
  297.     goto end
  298. warning = +
  299.     Shell $(subroutineinf) SetupMessage, $(!STF_LANGUAGE), "WARNING", $(Error)
  300.     ifint $($ShellCode) != $(!SHELL_CODE_OK)
  301.         goto ShellCodeError
  302.     endif
  303.     ifstr(i) $($R1) == "OK"
  304.         goto $(to)
  305.     else-ifstr(i) $($R1) == "CANCEL"
  306.         goto $(from)
  307.     else
  308.         goto "end"
  309.     endif
  310. nonfatalinfo = +
  311.     Set Severity = STATUS
  312.     Set CommonStatus = STATUS_USERCANCEL
  313.     goto nonfatalmsg
  314. nonfatal = +
  315.     Set Severity = NONFATAL
  316.     goto nonfatalmsg
  317. nonfatalmsg = +
  318.     ifstr(i) $(Error) == ""
  319.         Set Severity = NONFATAL
  320.         Shell $(UtilityInf) RegistryErrorString "SETUP_FAIL"
  321.         ifint $($ShellCode) != $(!SHELL_CODE_OK)
  322.             goto ShellCodeError
  323.         endif
  324.         set Error = $($R0)
  325.     endif
  326.     Shell $(subroutineinf) SetupMessage, $(!STF_LANGUAGE), $(Severity), $(Error)
  327.     ifint $($ShellCode) != $(!SHELL_CODE_OK)
  328.         goto ShellCodeError
  329.     endif
  330.     ifstr(i) $($R1) == "OK"
  331.         goto $(from)
  332.     else
  333.         goto "end"
  334.     endif
  335. fatalregistry = +
  336.     Shell $(UtilityInf) RegistryErrorString $(RegistryErrorIndex)
  337.     ifint $($ShellCode) != $(!SHELL_CODE_OK)
  338.         goto ShellCodeError
  339.     endif
  340.     set Error = $($R0)
  341.     goto fatal
  342. fataldetect = +
  343.     Shell $(UtilityInf),RegistryErrorString,CANNOT_DETECT
  344.     ifint $($ShellCode) != $(!SHELL_CODE_OK)
  345.         Debug-Output "ShellCode error: cannot get an error string."
  346.         goto ShellCodeError
  347.     endif
  348.     set Error = $($R0)
  349.     Goto fatal
  350. fatal = +
  351.     ifstr(i) $(Error) == ""
  352.         Shell $(UtilityInf) RegistryErrorString "SETUP_FAIL"
  353.         ifint $($ShellCode) != $(!SHELL_CODE_OK)
  354.             goto ShellCodeError
  355.         endif
  356.         set Error = $($R0)
  357.     endif
  358.     Shell $(subroutineinf) SetupMessage, $(!STF_LANGUAGE), "FATAL", $(Error)
  359.     ifint $($ShellCode) != $(!SHELL_CODE_OK)
  360.         goto ShellCodeError
  361.     endif
  362.     goto setfailed
  363. ShellCodeError = +
  364.     set DlgType      = "MessageBox"
  365.     set STF_MB_TITLE = "Error: "$(FunctionTitle)
  366.     set STF_MB_TEXT  = "Shell Code Error"
  367.     set STF_MB_TYPE  = 1
  368.     set STF_MB_ICON  = 3
  369.     set STF_MB_DEF   = 1
  370.     ui start "Error Message"
  371.     goto setfailed
  372. setfailed = +
  373.     set CommonStatus = STATUS_FAILED
  374.     ifstr(i) $(OEM_ABANDON_ON) == TRUE
  375.         set OEM_ABANDON_ON = FALSE
  376.         goto end
  377.     endif
  378.     goto end
  379. cancel = +
  380.     set CommonStatus = STATUS_USERCANCEL
  381.     goto term
  382. end = +
  383.     goto term
  384. term = +
  385.     Return $(CommonStatus)
  386.     exit
  387. [DebugConfiguration]
  388.     Set InfName = "OEMNADDI.INF"
  389.     Debug-Output $(InfName)" **CONFIGURATION STATE: "$($0)
  390.     return
  391. [Install-Option]
  392.     set STF_VITAL = ""
  393.     ifstr(i) $(AddCopy) == "YES"
  394.         AddSectionFilesToCopyList Files-$(Option) $(SrcDir) $(!STF_WINDOWSSYSPATH)\drivers
  395.         AddSectionFilesToCopyList Files-Dll $(SrcDir) $(!STF_WINDOWSSYSPATH)
  396.     endif
  397.     ifstr(i) $(DoCopy) == "YES"
  398.        set !STF_NCPA_FLUSH_COPYLIST = TRUE
  399.        CopyFilesInCopyList
  400.     endif
  401.     Exit
  402. [Install-Update]
  403.    set STF_VITAL        = ""
  404.    set STF_OVERWRITE    = "VERIFYSOURCEOLDER"
  405.    AddSectionFilesToCopyList Files-$(Option) $(SrcDir) $(!STF_WINDOWSSYSPATH)\drivers
  406.    AddSectionFilesToCopyList Files-Dll $(SrcDir) $(!STF_WINDOWSSYSPATH)
  407.    set !STF_NCPA_FLUSH_COPYLIST = TRUE
  408.    CopyFilesInCopyList
  409.    exit
  410. [Source Media Descriptions]
  411.     1    = "Windows NT Advanced Server Setup Disk #1"   , TAGFILE = disk1
  412.     2    = "Windows NT Advanced Server Setup Disk #2"   , TAGFILE = disk2
  413.     3    = "Windows NT Advanced Server Setup Disk #3"   , TAGFILE = disk3
  414.     4    = "Windows NT Advanced Server Setup Disk #4"   , TAGFILE = disk4
  415.     5    = "Windows NT Advanced Server Setup Disk #5"   , TAGFILE = disk5
  416.     6    = "Windows NT Advanced Server Setup Disk #6"   , TAGFILE = disk6
  417.     7    = "Windows NT Advanced Server Setup Disk #7"   , TAGFILE = disk7
  418.     8    = "Windows NT Advanced Server Setup Disk #8"   , TAGFILE = disk8
  419.     9    = "Windows NT Advanced Server Setup Disk #9"   , TAGFILE = disk9
  420.     10    = "Windows NT Advanced Server Setup Disk #10"  , TAGFILE = disk10
  421.     11    = "Windows NT Advanced Server Setup Disk #11"  , TAGFILE = disk11
  422.     12    = "Windows NT Advanced Server Setup Disk #12"  , TAGFILE = disk12
  423.     13    = "Windows NT Advanced Server Setup Disk #13"  , TAGFILE = disk13
  424.     14    = "Windows NT Advanced Server Setup Disk #14"  , TAGFILE = disk14
  425.     15    = "Windows NT Advanced Server Setup Disk #15"  , TAGFILE = disk15
  426.     16    = "Windows NT Advanced Server Setup Disk #16"  , TAGFILE = disk16
  427.     17    = "Windows NT Advanced Server Setup Disk #17"  , TAGFILE = disk17
  428.     18    = "Windows NT Advanced Server Setup Disk #18"  , TAGFILE = disk18
  429.     19    = "Windows NT Advanced Server Setup Disk #19"  , TAGFILE = disk19
  430.     20    = "Windows NT Advanced Server Setup Disk #20"  , TAGFILE = disk20
  431.     21    = "Windows NT Advanced Server Setup Disk #21"  , TAGFILE = disk21
  432.     22    = "Windows NT Advanced Server Setup Disk #22"  , TAGFILE = disk22
  433.     23    = "Windows NT Advanced Server Setup Disk #23"  , TAGFILE = disk23
  434.     24    = "Windows NT Advanced Server Setup Disk #24"  , TAGFILE = disk24
  435.     25    = "Windows NT Advanced Server Setup Disk #25"  , TAGFILE = disk25
  436.     26    = "Windows NT Advanced Server Setup Disk #26"  , TAGFILE = disk26
  437.     27    = "Windows NT Advanced Server Setup Disk #27"  , TAGFILE = disk27
  438.     28    = "Windows NT Advanced Server Setup Disk #28"  , TAGFILE = disk28
  439.     29    = "Windows NT Advanced Server Setup Disk #29"  , TAGFILE = disk29
  440. [ProductType]
  441. STF_PRODUCT  = LanmanNT
  442. STF_PLATFORM = I386
  443. [Files-Inf]
  444. 2,    oemsetup.inf,     SIZE=1000,    RENAME=$(!UG_Filename)
  445. [Files-Dll]
  446. 22,DIGIINST.DLL , SIZE=36864
  447. 22,ISDN.DLL , SIZE=36864
  448. 23,ISDNHELP.HLP , SIZE=12288
  449. [Files-PCIMAC/4]
  450. 20,IDP_XFS.BIN , SIZE=65536
  451. 14,PCIMAC.SYS , SIZE=95744
  452. [Files-PCIMACISA]
  453. 20,IDP_XFS.BIN , SIZE=65536
  454. 14,PCIMAC.SYS , SIZE=95744
  455. [Files-PCIMACMC]
  456. 20,IDP_XFS.BIN , SIZE=65536
  457. 14,PCIMAC.SYS , SIZE=95744
  458. [OptionsTextENG]
  459.     PCIMACISA     = "DigiBoard PCIMAC - ISA Adapter"
  460.     PCIMAC/4      = "DigiBoard PCIMAC/4 Adapter"
  461. [FileConstantsENG]
  462. ProCaption   = "Windows NT Setup"
  463. ProCancel    = "Cancel"
  464. ProCancelMsg = "Windows NT Networking is not correctly installed.  "+
  465.                "Are you sure you want to cancel copying files?"
  466. ProCancelCap = "Network Setup Message"
  467. ProText1     = "Copying:"
  468. ProText2     = "To:"
  469. FunctionTitle   = "DigiBoard ISDN Adapter Card Setup"
  470. ProductSoftwareDescription      = "DigiBoard ISDN Adapter Driver"
  471. ProductHardwarePCIMACDescription        = "DigiBoard ISDN Adapter"
  472.  
  473.  
  474.  
  475.