Leaked source code of windows server 2003
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.

58 lines
1.6 KiB

  1. ; -- NETBRDGM.INF --
  2. ;
  3. ; MAC Bridge Miniport INF file
  4. ;
  5. ; Copyright (c) Microsoft Corporation. All rights reserved.
  6. [Version]
  7. signature = "$Windows NT$"
  8. Class = Net
  9. ClassGUID = {4d36e972-e325-11ce-bfc1-08002be10318}
  10. Provider = %Msft%
  11. LayoutFile = layout.inf
  12. [ControlFlags]
  13. ExcludeFromSelect = ms_Bridgemp
  14. [Manufacturer]
  15. %Msft% = MSFT
  16. [MSFT]
  17. %BridgeMP_Desc% = BridgeMP.ndi, ms_Bridgemp
  18. [BridgeMP.ndi]
  19. AddReg = BridgeMP.ndi.Addreg
  20. Characteristics = 0x101 ; NCF_SINGLE_INSTANCE | NCF_VIRTUAL
  21. [BridgeMP.ndi.Services]
  22. AddService = BridgeMP,0x2, BridgeMP.AddService, BridgeMP.AddEventLog
  23. [BridgeMP.AddService]
  24. DisplayName = %BridgeMP_Desc%
  25. ServiceType = 1 ;SERVICE_KERNEL_DRIVER
  26. StartType = 3 ;SERVICE_DEMAND_START
  27. ErrorControl = 1 ;SERVICE_ERROR_NORMAL
  28. ServiceBinary = %12%\bridge.sys
  29. LoadOrderGroup = PNP_TDI
  30. [BridgeMP.ndi.AddReg]
  31. HKR, Ndi, Service, , BridgeMP
  32. HKR, Ndi, HelpText, 0, %BridgeMP_HELP%
  33. HKR, Ndi\Interfaces, UpperRange, , ndis5
  34. HKR, Ndi\Interfaces, LowerRange, , ethernet
  35. ; Require the install of our protocol
  36. HKR, Ndi, RequiredAll , 0, "ms_Bridge"
  37. ; Tell the EventLogger where to find our error text
  38. [BridgeMP.AddEventLog]
  39. AddReg = BridgeMP.AddEventLog.AddReg
  40. [BridgeMP.AddEventLog.AddReg]
  41. HKR, , EventMessageFile, 0x20000, "%%SystemRoot%%\System32\netevent.dll"
  42. HKR, , TypesSupported, 0x10001, 7
  43. [Strings]
  44. Msft = "Microsoft"
  45. BridgeMP_Desc = "MAC Bridge Miniport"
  46. BridgeMP_HELP = "MAC Bridge Miniport"