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.

122 lines
3.4 KiB

  1. ; -- NETATMSM.INF --
  2. ;
  3. ; ATMSM Sample INF file
  4. ;
  5. ; Copyright (c) 1993-1999, Microsoft Corporation
  6. ; ----------------------------------------------------------------------
  7. ; Note:
  8. ; ----------------------------------------------------------------------
  9. [version]
  10. ;Layoutfile parameter is reserved for internal Microsoft use only
  11. ;LayoutFile = layout.inf
  12. signature = "$Windows NT$"
  13. Class = NetTrans
  14. ClassGUID = {4d36e975-e325-11ce-bfc1-08002be10318}
  15. Provider = %Msft%
  16. DriverVer = 07/07/1999,5.00.00.2000
  17. [Manufacturer]
  18. %Msft% = MSFT
  19. [MSFT]
  20. %ATMSMDRV_Desc% = ATMSMDRV.ndi, MS_ATMSMDRV
  21. [ATMSMDRV.ndi]
  22. Characteristics = 0x0
  23. AddReg = ATMSMDRV.ndi.AddReg
  24. CopyFiles = ATMSMDRV.CopyFiles
  25. [ATMSMDRV.ndi.AddReg]
  26. HKR,Ndi,HelpText,,%ATMSMDRV_HELP%
  27. HKR,Ndi,Service ,,"AtmSmDrv"
  28. ; Interfaces
  29. HKR,Ndi\Interfaces,UpperRange,,"noupper"
  30. HKR,Ndi\Interfaces,LowerRange,,"ndisatm"
  31. [ATMSMDRV.ndi.Services]
  32. AddService=AtmSmDrv,0,ATMSMDRV.AddService
  33. [ATMSMDRV.AddService]
  34. DisplayName = %ATMSMDRV_Desc%
  35. ServiceType = 1 ;SERVICE_KERNEL_DRIVER
  36. StartType = 3 ;SERVICE_DEMAND_START
  37. ErrorControl = 1 ;SERVICE_ERROR_NORMAL
  38. ServiceBinary = %12%\atmsmdrv.sys
  39. LoadOrderGroup = NDIS
  40. AddReg = Registry.Service.ATMSMDRV
  41. [Registry.Service.ATMSMDRV]
  42. HKR,,"TextModeFlags",%REG_DWORD%,0x0001
  43. [ATMSMDRV.CopyFiles]
  44. atmsmdrv.sys,,,2
  45. [SourceDisksNames]
  46. ;
  47. ; diskid = description[, [tagfile] [, <unused>, subdir]]
  48. ;
  49. 1 = %DiskDescription%,,,
  50. [SourceDisksFiles]
  51. ;
  52. ; filename_on_source = diskID[, [subdir][, size]]
  53. ;
  54. atmsmdrv.sys = 1,, ; on distribution disk 1
  55. [DestinationDirs]
  56. ATMSMDRV.CopyFiles = 12
  57. DefaultDestDir = 12
  58. ; ----------------------------------------------------------------------
  59. [Strings]
  60. Msft = "Microsoft"
  61. DiskDescription = "ATMSMDRV Driver Disk 1"
  62. ATMSMDRV_Desc = "ATM Sample Client Protocol"
  63. ATMSMDRV_HELP = "The ATM Sample Client Protocol illustrates the operation of a CO-NDIS client using an ATM device."
  64. ; ServiceType values
  65. SERVICE_KERNEL_DRIVER = 0x00000001
  66. SERVICE_FILE_SYSTEM_DRIVER = 0x00000002
  67. SERVICE_ADAPTER = 0x00000004
  68. SERVICE_RECOGNIZER_DRIVER = 0x00000008
  69. SERVICE_WIN32_OWN_PROCESS = 0x00000010
  70. SERVICE_WIN32_SHARE_PROCESS = 0x00000020
  71. SERVICE_INTERACTIVE_PROCESS = 0x00000100
  72. SERVICE_INTERACTIVE_SHARE_PROCESS = 0x00000120
  73. ; StartType values
  74. SERVICE_BOOT_START = 0x00000000
  75. SERVICE_SYSTEM_START = 0x00000001
  76. SERVICE_AUTO_START = 0x00000002
  77. SERVICE_DEMAND_START = 0x00000003
  78. SERVICE_DISABLED = 0x00000004
  79. ; ErrorControl values
  80. SERVICE_ERROR_IGNORE = 0x00000000
  81. SERVICE_ERROR_NORMAL = 0x00000001
  82. SERVICE_ERROR_SEVERE = 0x00000002
  83. SERVICE_ERROR_CRITICAL = 0x00000003
  84. ; Characteristic flags
  85. NCF_VIRTUAL = 0x0001
  86. NCF_WRAPPER = 0x0002
  87. NCF_PHYSICAL = 0x0004
  88. NCF_HIDDEN = 0x0008
  89. NCF_NO_SERVICE = 0x0010
  90. NCF_NOT_USER_REMOVABLE = 0x0020
  91. NCF_HAS_UI = 0x0080
  92. NCF_MODEM = 0x0100
  93. ; Registry types
  94. REG_MULTI_SZ = 0x10000
  95. REG_EXPAND_SZ = 0x20000
  96. REG_DWORD = 0x10001
  97. ; Service install flags
  98. SPSVCINST_TAGTOFRONT = 0x1
  99. SPSVCINST_ASSOCSERVICE = 0x2