Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

120 lines
4.4 KiB

  1. ;***********************************************************************
  2. ; Copyright � 1999 TriplePoint, Inc.
  3. ;
  4. ; IsdnWan NDIS WAN/TAPI device installer script.
  5. ;***********************************************************************
  6. [version]
  7. Signature = "$Chicago$"
  8. Compatible = 1
  9. Class = Net
  10. ClassGUID = {4D36E972-E325-11CE-BFC1-08002BE10318}
  11. Provider = %VER_PROVIDER_NAME_STR%
  12. CatalogFile = IsdnWan.cat
  13. DriverVer = 06/22/2001, 0.07.00
  14. ;%VER_FILE_MAJOR_STR%"."%VER_FILE_MINOR_STR%"."%VER_FILE_SUB_MINOR_STR%
  15. [Manufacturer]
  16. %VER_VENDOR_NAME_STR% = Devices
  17. [Devices]
  18. %VER_DEVICE_STR%" Adapter" = IsdnWan.Ndi, TriplePointIsdnWan
  19. ;****************************************************************************
  20. ; IsdnWan Main Install Section
  21. ;****************************************************************************
  22. [IsdnWan.Ndi.NT]
  23. AddReg = IsdnWan.Ndis.Reg.NT, IsdnWan.Isdn.Params.NT, IsdnWan.Gen.Params.NT
  24. Characteristics = 0x81 ; NCF_HAS_UI | NCF_VIRTUAL
  25. CopyFiles = IsdnWan.CopyFiles.NT
  26. BusType = 0 ; TODO - Change from "Internal" bus to actual bus
  27. [IsdnWan.Ndi.NT.Services]
  28. AddService = IsdnWan, 2, IsdnWan.Service.NT, Common.EventLog.NT
  29. ;****************************************************************************
  30. ; IsdnWan Base Section
  31. ;****************************************************************************
  32. [IsdnWan.Ndis.Reg.NT]
  33. ; key,subkey,valuname,type,value
  34. HKR, Ndi, Service, 0, "IsdnWan"
  35. HKR, Ndi\Interfaces, UpperRange, 0, "ndiswan"
  36. HKR, Ndi\Interfaces, LowerRange, 0, "isdn"
  37. ;****************************************************************************
  38. ; ISDN Parameters
  39. ;****************************************************************************
  40. [IsdnWan.Isdn.Params.NT]
  41. ; key,subkey,valuname,type,value
  42. HKR, , IsdnAutoSwitchDetect,0x00010001, "0"
  43. HKR, , IsdnSwitchTypes, 0x00010001, "0x0000000E"
  44. HKR, , IsdnNumDChannels, 0x00010001, "1"
  45. HKR, , IsdnNumBChannels, 0x00010001, "2"
  46. HKR, , WanEndPoints, 0x00010001, "2"
  47. ; WanEndPoints should normally be set to (IsdnNumDChannels * IsdnNumBChannels)
  48. ;****************************************************************************
  49. ; General Parameters
  50. ;****************************************************************************
  51. [IsdnWan.Gen.Params.NT]
  52. ; key,subkey,valuname,type,value
  53. HKR, , DebugFlags, 0x00010001, 0x00008043
  54. HKR, , BusType, 0x00010001, 0x00000000
  55. HKR, , BusNumber, 0x00010001, 0x00000000
  56. ;****************************************************************************
  57. ; NT Service Section
  58. ;****************************************************************************
  59. [IsdnWan.Service.NT]
  60. DisplayName = %VER_DEVICE_STR%" Adapter"
  61. ErrorControl = 1 ; SERVICE_ERROR_NORMAL
  62. LoadOrderGroup = NDIS
  63. ServiceBinary = %12%\IsdnWan.sys ; System32\Drivers
  64. ServiceType = 1 ; SERVICE_KERNEL_DRIVER
  65. StartType = 3 ; 3=SERVICE_DEMAND_START 2=SERVICE_AUTO_START
  66. [Common.EventLog.NT]
  67. AddReg = Common.AddEventLog.Reg.NT
  68. [Common.AddEventLog.Reg.NT]
  69. ; key,subkey,valuname,type,value
  70. HKR, , EventMessageFile, 0x00020000, "%%SystemRoot%%\System32\netevent.dll"
  71. HKR, , TypesSupported, 0x00010001, "7"
  72. ;****************************************************************************
  73. ; Source Directories
  74. ;****************************************************************************
  75. [SourceDisksNames.NT]
  76. ; The name of the disk that the user will be prompted for
  77. 1 = %DISK_NAME%, "IsdnWan.sys",
  78. [SourceDisksFiles.NT]
  79. ; Which disk the files are located on
  80. IsdnWan.sys = 1
  81. ;****************************************************************************
  82. ; Destination Directories
  83. ;****************************************************************************
  84. [DestinationDirs]
  85. DefaultDestDir = 12 ; System32\Drivers
  86. IsdnWan.CopyFiles.NT = 12 ; System32\Drivers
  87. [IsdnWan.CopyFiles.NT]
  88. IsdnWan.sys,,,2 ; The name of the driver
  89. ;****************************************************************************
  90. ; Localizable Strings
  91. ;****************************************************************************
  92. [strings]
  93. ; Provider
  94. VER_PROVIDER_NAME_STR = "Microsoft"
  95. ; Manufacturer
  96. VER_VENDOR_NAME_STR = "TriplePoint, Inc."
  97. ; Device Descriptions -
  98. VER_DEVICE_STR = "TriplePoint ISDNWAN"
  99. ; Name on install disk
  100. DISK_NAME = "TriplePoint ISDNWAN Install Disk"