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.

61 lines
1.8 KiB

  1. ;-------------------------------------------------------------------------
  2. ; NDISUIO.INF -- NDIS Usermode I/O Driver
  3. ;
  4. ; Copyright (c) Microsoft Corporation. All rights reserved.
  5. ;-------------------------------------------------------------------------
  6. [version]
  7. Signature = "$Windows NT$"
  8. Class = NetTrans
  9. ClassGUID = {4d36e975-e325-11ce-bfc1-08002be10318}
  10. Provider = %Msft%
  11. LayoutFile = layout.inf
  12. [Manufacturer]
  13. %Msft%=MSFT
  14. [MSFT]
  15. %NDISUIO_Desc%=Install, MS_NDISUIO
  16. ;-------------------------------------------------------------------------
  17. ; Installation Section
  18. ;-------------------------------------------------------------------------
  19. [Install]
  20. AddReg=Inst_Ndi
  21. Characteristics=0x28 ; NCF_HIDDEN | NCF_NOT_USER_REMOVABLE
  22. ;-------------------------------------------------------------------------
  23. ; Ndi installation support
  24. ;-------------------------------------------------------------------------
  25. [Inst_Ndi]
  26. HKR,Ndi,Service,,"Ndisuio"
  27. HKR,Ndi,HelpText,,%NDISUIO_HelpText%
  28. HKR, Ndi\Interfaces, UpperRange,, noupper
  29. HKR,"Ndi\Interfaces","LowerRange",,"ndis5,ndis4,ndis5_uio"
  30. ;-------------------------------------------------------------------------
  31. ; Service installation support
  32. ;-------------------------------------------------------------------------
  33. [Install.Services]
  34. AddService=Ndisuio,,NDISUIO_Service_Inst
  35. [Ndisuio_Service_Inst]
  36. DisplayName = %NDISUIO_Desc%
  37. ServiceType = 1 ;SERVICE_KERNEL_DRIVER
  38. StartType = 3 ;SERVICE_MANUAL_START
  39. ErrorControl = 1 ;SERVICE_ERROR_NORMAL
  40. ServiceBinary = %12%\ndisuio.sys
  41. LoadOrderGroup = NDIS
  42. Description = %NDISUIO_Desc%
  43. [Install.Remove.Services]
  44. DelService=Ndisuio,0x200
  45. [Strings]
  46. Msft = "Microsoft"
  47. NDISUIO_Desc = "NDIS Usermode I/O Protocol"
  48. NDISUIO_HelpText = "A driver to support user-mode I/O on NDIS devices"