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.

74 lines
2.2 KiB

  1. ; NET1394.INX -- 1394 NIC Miniport
  2. ;
  3. ; Copyright (c) 1993-1999, Microsoft Corporation
  4. [version]
  5. Signature = "$Windows NT$"
  6. Class = Net
  7. ClassGUID = {4d36e972-e325-11ce-bfc1-08002be10318}
  8. Provider = %Msft%
  9. DriverVer=11/01/2000,5.1.2400.1
  10. [Manufacturer]
  11. %Msft% = Msft
  12. [ControlFlags]
  13. ExcludeFromSelect = V1394\NIC1394
  14. [Msft]
  15. ; DisplayName Section DeviceID
  16. ; ----------- ------- --------
  17. %nic1394.devicedesc% = nic1394.ndi,V1394\NIC1394
  18. [nic1394.ndi]
  19. Characteristics = 0x04
  20. BusType = 14
  21. AddReg = nic1394.ndi.reg
  22. [nic1394.ndi.Services]
  23. AddService = NIC1394, 2, nic1394.Services, nic1394.EventLog
  24. AddService=Arp1394,0,ARP1394.AddService, NetEventLog
  25. ;-------------------------------------------------------------------------
  26. ; NDI AddReg sections.
  27. ;-------------------------------------------------------------------------
  28. [nic1394.ndi.reg]
  29. HKR, Ndi, Service, 0, "NIC1394"
  30. HKR, Ndi\Interfaces, UpperRange, 0, "ndis1394"
  31. HKR, Ndi\Interfaces, LowerRange, 0, "atm"
  32. ;-------------------------------------------------------------------------
  33. ; [Service Install] sections.
  34. ;-------------------------------------------------------------------------
  35. [nic1394.Services]
  36. DisplayName = %nic1394.Service.DispName%
  37. ServiceType = 1 ;SERVICE_KERNEL_DRIVER
  38. StartType = 3 ;SERVICE_DEMAND_START
  39. ErrorControl = 1 ;SERVICE_ERROR_NORMAL
  40. ServiceBinary = %12%\nic1394.sys
  41. LoadOrderGroup = NDIS
  42. [ARP1394.AddService]
  43. DisplayName = %MS_ARP1394.DeviceDesc%
  44. ServiceType = 1 ;SERVICE_KERNEL_DRIVER
  45. StartType = 3 ;SERVICE_DEMAND_START
  46. ErrorControl = 1 ;SERVICE_ERROR_NORMAL
  47. ServiceBinary = %12%\arp1394.sys
  48. LoadOrderGroup = NDIS
  49. Dependencies = Tcpip
  50. Description = %MS_ARP1394.DeviceDesc%
  51. [nic1394.EventLog]
  52. AddReg = nic1394.AddEventLog.reg
  53. [nic1394.AddEventLog.reg]
  54. HKR, , EventMessageFile, 0x00020000, "%%SystemRoot%%\System32\netevent.dll"
  55. HKR, , TypesSupported, 0x00010001, 7
  56. [Strings]
  57. Msft = "Microsoft"
  58. nic1394.devicedesc = "1394 Net Adapter"
  59. nic1394.Service.DispName = "1394 Net Driver"
  60. MS_ARP1394.DeviceDesc="1394 ARP Client Protocol"