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.

128 lines
2.5 KiB

  1. ; mirror.inf
  2. ;
  3. ; Installation inf for the Mirror graphics adapter.
  4. ;
  5. ; Copyright (x) 1995-1999 Microsoft Corporation. All rights reserved
  6. ;
  7. [Version]
  8. Signature="$CHICAGO$"
  9. Provider=%Microsoft%
  10. ClassGUID={4D36E968-E325-11CE-BFC1-08002BE10318}
  11. Class=Display
  12. DriverVer=06/01/1999,1.0
  13. [DestinationDirs]
  14. DefaultDestDir = 11
  15. mirror.Miniport = 12 ; drivers
  16. mirror.Display = 11 ; system32
  17. ;
  18. ; Driver information
  19. ;
  20. [Manufacturer]
  21. %Microsoft% = Mirror.Mfg
  22. [Mirror.Mfg]
  23. %Mirror% = mirror, Microsoft_Mirror_Sample1
  24. ;
  25. ; General installation section
  26. ;
  27. [mirror]
  28. CopyFiles=mirror.Miniport, mirror.Display
  29. ;
  30. ; File sections
  31. ;
  32. [mirror.Miniport]
  33. mirror.sys
  34. [mirror.Display]
  35. mirror.dll
  36. ;
  37. ; Service Installation
  38. ;
  39. [mirror.Services]
  40. AddService = mirror, 0x00000002, mirror_Service_Inst, mirror_EventLog_Inst
  41. [mirror_Service_Inst]
  42. ServiceType = 1 ; SERVICE_KERNEL_DRIVER
  43. StartType = 1 ; SERVICE_SYSTEM_START
  44. ErrorControl = 0 ; SERVICE_ERROR_IGNORE
  45. LoadOrderGroup = Video
  46. ServiceBinary = %12%\mirror.sys
  47. [mirror_EventLog_Inst]
  48. AddReg = mirror_EventLog_AddReg
  49. [mirror_EventLog_AddReg]
  50. HKR,,EventMessageFile,0x00020000,"%SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\drivers\mirror.sys"
  51. HKR,,TypesSupported,0x00010001,7
  52. ;
  53. ; Software Installation
  54. ;
  55. [mirror.SoftwareSettings]
  56. AddReg = mirror_SoftwareDeviceSettings
  57. [mirror_SoftwareDeviceSettings]
  58. HKR,, MirrorDriver, %REG_DWORD%, 1
  59. HKR,, InstalledDisplayDrivers, %REG_MULTI_SZ%, mirror
  60. HKR,, VgaCompatible, %REG_DWORD%, 0
  61. HKR,, Attach.ToDesktop, %REG_DWORD%, 1
  62. [mirror.OpenGLSoftwareSettings]
  63. AddReg = mirror_OpenGLSoftwareSettings
  64. [mirror_OpenGLSoftwareSettings]
  65. ;
  66. ; Not currently used:
  67. ;
  68. [mirror.GeneralConfigData]
  69. MaximumNumberOfDevices = 1
  70. KeepExistingDriverEnabled = 1
  71. ;
  72. ; Source file information
  73. ;
  74. [SourceDisksNames.x86]
  75. 1 = %DiskId%,,,""
  76. [SourceDisksFiles]
  77. mirror.sys = 1
  78. mirror.dll = 1
  79. [Strings]
  80. ;
  81. ; Non-Localizable Strings
  82. ;
  83. REG_SZ = 0x00000000
  84. REG_MULTI_SZ = 0x00010000
  85. REG_EXPAND_SZ = 0x00020000
  86. REG_BINARY = 0x00000001
  87. REG_DWORD = 0x00010001
  88. SERVICEROOT = "System\CurrentControlSet\Services"
  89. ;
  90. ; Localizable Strings
  91. ;
  92. DiskId = "Mirror Installation DISK (VIDEO)"
  93. GraphAdap = "Graphics Adapter"
  94. Microsoft = "Microsoft"
  95. Mirror = "Microsoft Mirror Driver"