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.6 KiB

  1. ; videosim.inf
  2. ;
  3. ; Installation inf for the Microsoft videosim graphics adapter.
  4. ;
  5. [Version]
  6. Signature="$CHICAGO$"
  7. Provider=%MS%
  8. ClassGUID={4D36E968-E325-11CE-BFC1-08002BE10318}
  9. Class=Display
  10. [DestinationDirs]
  11. DefaultDestDir = 11
  12. videosim.Miniport = 12 ; drivers
  13. videosim.Display = 11 ; system32
  14. videosimsecond.Miniport = 12 ; drivers
  15. videosimsecond.Display = 11 ; system32
  16. ;
  17. ; Driver information
  18. ;
  19. [Manufacturer]
  20. %MS% = MS.Mfg
  21. [MS.Mfg]
  22. %MS% Primary Memory simulation driver = videosim
  23. %MS% Secondary Memory simulation driver = videosimsecond
  24. ;
  25. ; General installation section
  26. ;
  27. [videosim]
  28. CopyFiles=videosim.Miniport, videosim.Display
  29. [videosimsecond]
  30. CopyFiles=videosim.Miniport, videosim.Display
  31. ;
  32. ; File sections
  33. ;
  34. [videosim.Miniport]
  35. videosim.sys
  36. [videosimsecond.Miniport]
  37. videosim.sys
  38. [videosim.Display]
  39. [videosimsecond.Display]
  40. ;
  41. ; Service Installation
  42. ;
  43. [videosim.Services]
  44. AddService = videosim, 0x00000002, videosim_Service_Inst, videosim_EventLog_Inst
  45. [videosimsecond.Services]
  46. AddService = videosim, 0x00000002, videosim_Service_Inst, videosim_EventLog_Inst
  47. [videosim_Service_Inst]
  48. ServiceType = 1 ; SERVICE_KERNEL_DRIVER
  49. StartType = 1 ; SERVICE_SYSTEM_START
  50. ErrorControl = 0 ; SERVICE_ERROR_IGNORE
  51. LoadOrderGroup = Video
  52. ServiceBinary = %12%\videosim.sys
  53. [videosim_EventLog_Inst]
  54. AddReg = videosim_EventLog_AddReg
  55. [videosim_EventLog_AddReg]
  56. HKR,,EventMessageFile,0x00020000,"%SystemRoot%\System32\IoLogMsg.dll;%SystemRoot%\System32\drivers\videosim.sys"
  57. HKR,,TypesSupported,0x00010001,7
  58. ;
  59. ; Software Installation
  60. ;
  61. [videosim.SoftwareSettings]
  62. AddReg = videosim_SoftwareDeviceSettings
  63. [videosimsecond.SoftwareSettings]
  64. AddReg = videosim_SoftwareDeviceSettings
  65. [videosim_SoftwareDeviceSettings]
  66. HKR,, InstalledDisplayDrivers, %REG_MULTI_SZ%, framebuf
  67. HKR,, VgaCompatible, %REG_DWORD%, 0
  68. [videosimsecond.GeneralConfigData]
  69. MaximumNumberOfDevices = 2
  70. KeepExistingDriverEnabled = 1
  71. ;
  72. ; Source file information
  73. ;
  74. [SourceDisksNames.x86]
  75. 1 = %DiskId%,,,""
  76. [SourceDisksFiles]
  77. videosim.sys = 1
  78. ; framebuf.dll = 1 ; always shipped and preinstalled by NT itself - no need to copy
  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 = "Microsoft Installation DISK (VIDEO)"
  93. GraphAdap = "Graphics Adapter"
  94. MS = "Microsoft"