home *** CD-ROM | disk | FTP | other *** search
/ HP Vectra VL400 Image Library & Diagnostics System / ILD_VL400.iso / packages / w2000 / driver / lan / intel / iaa4002 / setup.exe / Package / CDRom / IVLANM.INF < prev    next >
Encoding:
INI File  |  2000-01-12  |  4.2 KB  |  132 lines

  1. ; -- iVLANM.INF --
  2. ;
  3. ; IVLAN Miniport INF file
  4. ;
  5. ; Copyright (c) 1999-2000, Intel Corporation
  6.  
  7. [version]
  8. signature               = "$Windows NT$"
  9. Class                   = Net
  10. ClassGUID               = {4d36e972-e325-11ce-bfc1-08002be10318}
  11. Provider                = %V_Intel%
  12. CatalogFile             = e100bw2k.cat
  13. DriverVer               = 01/06/2000
  14.  
  15. ;;;;[ControlFlags]
  16.  
  17. [Manufacturer]
  18. %V_Intel%               = Intel
  19.  
  20. [Intel]
  21. %iVLAN_Desc%             = iVLANMP.ndi,     "iVLANMiniport"
  22.  
  23. [iVLANMP.ndi]
  24. AddReg                  = iVLANMP.ndi.AddReg
  25. Characteristics         = 0x8001 ; NCF_FORCE_NDIS_NOTIFY | NCF_VIRTUAL
  26. ;;CopyFiles                = iVLAN.CopyFiles.Sys
  27.  
  28. [iVLANMP.ndi.Services]
  29. AddService              = iVLAN,   %SPSVCINST_ASSOCSERVICE%, iVLANMP.AddService, NetEventLog
  30.  
  31. ;****************************************************************************
  32. ; [Event Log] sections.
  33. ;****************************************************************************
  34. [NetEventLog]
  35. AddReg = NetEventLog.AddReg
  36.  
  37. [NetEventLog.AddReg]
  38.     HKR,,EventMessageFile,0x00020000,"%%SystemRoot%%\System32\drivers\ivlanw2k.sys"
  39.     HKR,,TypesSupported,0x00010001,7
  40.  
  41. [iVLANMP.AddService]
  42. DisplayName             = %iVLAN_Desc%
  43. ServiceType             = %SERVICE_KERNEL_DRIVER%
  44. StartType               = %SERVICE_DEMAND_START%
  45. ServiceBinary           = %12%\iVLANw2k.sys
  46. LoadOrderGroup          = NDIS
  47. ErrorControl            = %SERVICE_ERROR_NORMAL%
  48. ;StartName               = ; No name
  49. AddReg                  = iVLANMP.AddService.AddReg
  50.  
  51.  
  52. [iVLANMP.AddService.AddReg]
  53. ; ----------------------------------------------------------------------
  54. ; Add any miniport-specific parameters here.  These are params that your
  55. ; miniport driver is going to use.  
  56. ;
  57. ;HKR,   "Parameters", "ParameterName",  %REG_MULTI_SZ%, "MultiSz", "Parameter", "Value"
  58. ;HKR,   "Parameters", "ParameterName2", %REG_DWORD%,    4
  59.  
  60. [iVLANMP.ndi.AddReg]
  61. HKR,    Ndi,            Service,    ,                "iVLAN"
  62. HKR,    Ndi,            HelpText,   ,                "iVLAN Help"
  63.  
  64. HKR,Ndi\Interfaces,                   "UpperRange", %FLG_NOCLOBBER%, "ndis5"
  65. HKR,Ndi\Interfaces,                   "LowerRange", %FLG_NOCLOBBER%, ""
  66.  
  67. ;----------------------------------------------------------------------------
  68. ; File Copy
  69. ;----------------------------------------------------------------------------
  70. [SourceDisksNames]
  71. ;1="Intel VLAN Driver Disk","",0
  72.  
  73. ;[SourceDisksFiles]
  74. ;iVLANw2k.sys=1
  75.  
  76. ;[DestinationDirs]
  77. ;DefaultDestDir     = 11   ; %WinDir%\System32
  78. ;iVLAN.CopyFiles.Sys = 12   ; %WinDir%\System32\Drivers
  79.  
  80. ;[iVLAN.CopyFiles.Sys]
  81. ;iVLANw2k.sys,,,2
  82.  
  83. ;------------------------------------------------------------------------------------
  84. [Strings]
  85. V_Intel                     = "Intel"
  86. iVLAN_Desc                   = "Intel(R) VLAN Virtual Adapter"
  87.  
  88. ; ServiceType values
  89. SERVICE_KERNEL_DRIVER       = 0x00000001
  90. SERVICE_FILE_SYSTEM_DRIVER  = 0x00000002
  91. SERVICE_ADAPTER             = 0x00000004
  92. SERVICE_RECOGNIZER_DRIVER   = 0x00000008
  93. SERVICE_WIN32_OWN_PROCESS   = 0x00000010
  94. SERVICE_WIN32_SHARE_PROCESS = 0x00000020
  95. SERVICE_INTERACTIVE_PROCESS = 0x00000100
  96. SERVICE_INTERACTIVE_SHARE_PROCESS = 0x00000120
  97.  
  98. ; StartType values
  99. SERVICE_BOOT_START          = 0x00000000
  100. SERVICE_SYSTEM_START        = 0x00000001
  101. SERVICE_AUTO_START          = 0x00000002
  102. SERVICE_DEMAND_START        = 0x00000003
  103. SERVICE_DISABLED            = 0x00000004
  104.  
  105. ; ErrorControl values
  106. SERVICE_ERROR_IGNORE        = 0x00000000
  107. SERVICE_ERROR_NORMAL        = 0x00000001
  108. SERVICE_ERROR_SEVERE        = 0x00000002
  109. SERVICE_ERROR_CRITICAL      = 0x00000003
  110.  
  111. ; Characteristic flags
  112. NCF_VIRTUAL                 = 0x0001
  113. NCF_WRAPPER                 = 0x0002
  114. NCF_PHYSICAL                = 0x0004
  115. NCF_HIDDEN                  = 0x0008
  116. NCF_NO_SERVICE              = 0x0010
  117. NCF_NOT_USER_REMOVABLE      = 0x0020
  118. NCF_HAS_UI                  = 0x0080
  119. NCF_MODEM                   = 0x0100
  120.  
  121. ; Registry types
  122. REG_MULTI_SZ                = 0x10000
  123. REG_EXPAND_SZ               = 0x20000
  124. REG_DWORD                   = 0x10001
  125.  
  126. ; Service install flags
  127. SPSVCINST_TAGTOFRONT        = 0x1
  128. SPSVCINST_ASSOCSERVICE      = 0x2
  129.  
  130. ; AddReg flags
  131. FLG_NOCLOBBER        = 0x00000002
  132.