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.

85 lines
2.7 KiB

  1. ; Copyright (c) 2000, Microsoft
  2. [Version]
  3. Signature = "$Windows NT$"
  4. Class = Net
  5. ClassGUID = {4d36e972-e325-11ce-bfc1-08002be10318}
  6. Provider = %Msft%
  7. LayoutFile = layout.inf
  8. DriverVer = 06/22/2001,5.1.2505.0
  9. [Manufacturer]
  10. %MSft% = Microsoft
  11. [Microsoft]
  12. ; DisplayName Section DeviceID
  13. ; ----------- ------- --------
  14. %TUNMP.DeviceDesc% = TUNMP.ndi, *TUNMP
  15. [TUNMP.ndi.NT]
  16. AddReg = TUNMP.ndi.params, TUNMP.ndi.reg
  17. BusType = 1
  18. Characteristics = 0x84; NCF_PHYSICAL, NCF_HAS_UI
  19. CopyFiles = tunmp.CopyFiles
  20. [TUNMP.ndi.reg]
  21. HKR, Ndi, Service, 0, "tunmp"
  22. HKR, Ndi, HelpText, 0, %tunmp_Help%
  23. HKR, Ndi\Interfaces, LowerRange, 0, "nolower"
  24. HKR, Ndi\Interfaces, UpperRange, 0, "ndis5"
  25. [TUNMP.ndi.params]
  26. HKR, Ndi\Params\Medium, ParamDesc, 0, %Medium%
  27. HKR, Ndi\Params\Medium, Default, 0, "0"
  28. HKR, Ndi\Params\Medium\enum, "0", 0, %Ethernet%
  29. HKR, Ndi\Params\Medium\enum, "1", 0, %TokenRing%
  30. HKR, Ndi\Params\Medium\enum, "2", 0, %FDDI%
  31. HKR, Ndi\Params\Medium\enum, "7", 0, %ARCNET%
  32. HKR, Ndi\Params\Medium, Type, 0, "enum"
  33. HKR, Ndi\Params\NetworkAddress, ParamDesc, 0, %NetworkAddress%
  34. HKR, Ndi\Params\NetworkAddress, Default, 0, ""
  35. HKR, Ndi\Params\NetworkAddress, Type, 0, "text"
  36. [tunmp.CopyFiles]
  37. tunmp.sys,,,2
  38. [TUNMP.ndi.NT.Services]
  39. AddService = tunmp, 2, tunmp.Service, tunmp.AddEventLog
  40. [tunmp.Service]
  41. DisplayName = %tunmp.Service.DispName%
  42. ServiceType = 1 ;SERVICE_KERNEL_DRIVER
  43. StartType = 3 ;SERVICE_AUTO_START
  44. ErrorControl = 1 ;NORMAL
  45. ServiceBinary = %12%\tunmp.sys
  46. LoadOrderGroup = NDIS
  47. [tunmp.AddEventLog]
  48. AddReg = tunmp.AddEventLog.Reg
  49. [tunmp.AddEventLog.Reg]
  50. HKR, , EventMessageFile, 0x00020000, "%%SystemRoot%%\System32\netevent.dll"
  51. HKR, , TypesSupported, 0x00010001, 7
  52. ;-----------------------------------------------------------------------------
  53. ; DestinationDirs
  54. ;
  55. [DestinationDirs]
  56. DefaultDestDir = 12 ; Drivers directory
  57. tunmp.CopyFiles = 12
  58. [Strings]
  59. Msft = "Microsoft"
  60. Medium = "Medium"
  61. Ethernet = "Ethernet"
  62. TokenRing = "Token Ring"
  63. FDDI = "FDDI"
  64. ARCNET = "ARCNET"
  65. NetworkAddress = "Network Address"
  66. TUNMP.DeviceDesc = "Microsoft Tun Miniport Adapter"
  67. tunmp.Service.DispName = "Microsoft Tun Miniport Adapter Driver"
  68. tunmp_Help = "Microsoft Tun Miniport Adapter Driver"