netndisuio.inf
Upload User: yanxuanwei
Upload Date: 2008-05-17
Package Size: 53k
Code Size: 2k
Category:

Driver Develop

Development Platform:

Visual C++

  1. ;-------------------------------------------------------------------------
  2. ; NDISUIO.INF -- NDIS Usermode I/O Driver
  3. ;
  4. ; Copyright (c) 2000, Microsoft Corporation
  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. CopyFiles=CpyFiles_Sys
  23. ;-------------------------------------------------------------------------
  24. ; Ndi installation support
  25. ;-------------------------------------------------------------------------
  26. [Inst_Ndi]
  27. HKR,Ndi,Service,,"Ndisuio2"
  28. HKR,Ndi,HelpText,,%NDISUIO_HelpText%
  29. HKR, NdiInterfaces, UpperRange,, noupper
  30. HKR,"NdiInterfaces","LowerRange",,"ndis5,ndis4,ndis5_uio"
  31. ;-------------------------------------------------------------------------
  32. ; Service installation support
  33. ;-------------------------------------------------------------------------
  34. [Install.Services]
  35. AddService=Ndisuio2,,NDISUIO_Service_Inst
  36. [Ndisuio_Service_Inst]
  37. DisplayName     = %NDISUIO_Desc%
  38. ServiceType     = 1 ;SERVICE_KERNEL_DRIVER
  39. StartType       = 3 ;SERVICE_MANUAL_START
  40. ErrorControl    = 1 ;SERVICE_ERROR_NORMAL
  41. ServiceBinary   = %12%ndisuio2.sys
  42. LoadOrderGroup  = NDIS2
  43. Description     = %NDISUIO_Desc%
  44. [Install.Remove.Services]
  45. DelService=Ndisuio2
  46. ;-------------------------------------------------------------------------
  47. ; Declare Destination Directories for file copy/deletion
  48. ;-------------------------------------------------------------------------
  49. [DestinationDirs]
  50. CpyFiles_Sys    = 12    ; DIRID_DRIVERS
  51. ;-------------------------------------------------------------------------
  52. ; Files to Copy/Delete - Referenced by Install and Remove sections above
  53. ;-------------------------------------------------------------------------
  54. [CpyFiles_Sys]
  55. Ndisuio2.sys,,,2
  56. [Strings]
  57. Msft = "Microsoftxwt"
  58. NDISUIO_Desc = "NDIS2 Usermode I/O Protocol"
  59. NDISUIO_HelpText = "A driver to support user-mode I/O on NDIS devices"