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.

96 lines
2.3 KiB

  1. ; -- MUXP.INF --
  2. ;
  3. ; Sample MUX INF file
  4. ;
  5. ; Copyright (c) 1993-2001, Microsoft Corporation
  6. [Version]
  7. Signature = "$Windows NT$"
  8. Class = NetTrans
  9. ClassGUID = {4D36E975-E325-11CE-BFC1-08002BE10318}
  10. Provider = %Msft%
  11. DriverVer = 07/25/2000,5.1.2253.1
  12. [Manufacturer]
  13. %Msft% = MSFT
  14. [MSFT]
  15. %MUXP_Desc% = MUXP.ndi, MS_MUXP
  16. ; Note:
  17. ; 1. The NCF_* flags are defined in netcfgx.h
  18. ; 2. NCF_HAS_UI (0x80) is required for custom property pages.
  19. ;
  20. [MUXP.ndi]
  21. AddReg = MUXP.ndi.AddReg
  22. Characteristics = 0x80 ; NCF_HAS_UI
  23. copyfiles = MUXP.CopyFiles.DLL, MUXP.CopyFiles.sys
  24. CopyInf = mux_mp.inf
  25. [SourceDisksNames]
  26. 1=%DiskDescription%,"",,
  27. [SourceDisksFiles]
  28. mux.sys = 1
  29. mux.dll = 1
  30. [DestinationDirs]
  31. DefaultDestDir = 12
  32. MUXP.CopyFiles.DLL = 11 ; %windir%\System32
  33. MUXP.CopyFiles.Sys = 12 ; %windir%\System32\drivers
  34. [MUXP.CopyFiles.Sys]
  35. mux.sys,,,2
  36. [MUXP.CopyFiles.DLL]
  37. mux.dll,,,2
  38. ;-----------------------------------------------------------------------
  39. ; Install parameters
  40. ;
  41. [MUXP.ndi.AddReg]
  42. HKR, Ndi, ClsID, 0, {ee6cd6fc-a32b-4a26-8a1c-dbc97988ad7a}
  43. HKR, Ndi, ComponentDll, , mux.dll
  44. HKR, Ndi, HelpText, 0, "%MUXP_HELP%"
  45. HKR, Ndi, Service, 0, "MUXP"
  46. HKR, Ndi\Interfaces, UpperRange, 0, "noupper"
  47. HKR, Ndi\Interfaces, LowerRange, 0, "ndis5"
  48. [MUXP.ndi.Services]
  49. AddService = MUXP, , MUXP.AddService, MUXP.AddEventLog
  50. [MUXP.AddService]
  51. DisplayName = %MUXP_Desc%
  52. ServiceType = 1 ;SERVICE_KERNEL_DRIVER
  53. StartType = 3 ;SERVICE_DEMAND_START
  54. ErrorControl = 1 ;SERVICE_ERROR_NORMAL
  55. ServiceBinary = %12%\mux.sys
  56. LoadOrderGroup = PNP_TDI
  57. Description = %MUXP_Desc%
  58. [MUXP.AddEventLog]
  59. AddReg = MUXP.AddEventLog.AddReg
  60. [MUXP.AddEventLog.AddReg]
  61. HKR, , EventMessageFile, 0x20000, "%%SystemRoot%%\System32\netevent.dll"
  62. HKR, , TypesSupported, 0x10001, 7
  63. [MUXP.ndi.Remove.Services]
  64. DelService = MUXP
  65. [MUXP.ndi.Remove]
  66. DelFiles = MUXP.CopyFiles.DLL, MUXP.CopyFiles.sys
  67. [Strings]
  68. Msft = "Microsoft"
  69. MUXP_Desc = "Sample Mux-IM Protocol Driver"
  70. MUXP_HELP = "Sample Mux-IM Protocol"
  71. DiskDescription = "Microsoft MUX Sample Driver Disk"