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.

125 lines
2.7 KiB

  1. ; Winxp.INF
  2. ;
  3. ; INF file for OEM DLL Print UI Replacement sample
  4. ;
  5. ; Copyright 2001-2003 Microsoft Corporation
  6. [Version]
  7. Signature="$Windows NT$"
  8. Provider=%MS%
  9. LayoutFile=ntprint.inf
  10. ClassGUID={4D36E979-E325-11CE-BFC1-08002BE10318}
  11. Class=Printer
  12. DriverVer=6/07/2001,1.0.0.1
  13. ;
  14. ; Manufacturer section.
  15. ;
  16. ; This section lists all of the manufacturers
  17. ; that we will display in the Dialog box
  18. ;
  19. [Manufacturer]
  20. "Microsoft"
  21. ;
  22. ; Model sections.
  23. ;
  24. ; Each section here corresponds with an entry listed in the
  25. ; [Manufacturer] section, above. The models will be displayed in the order
  26. ; that they appear in the INF file.
  27. ;
  28. [Microsoft]
  29. "Themed OEM UI (Unidrv)" = THEMEUI.UNI
  30. "Themed OEM UI (PScript5)" = THEMEUI.PS
  31. "PS Standard UI Replacement" = PSUIREP.PS
  32. ;
  33. ; Installer Sections
  34. ;
  35. ; These sections control file installation, and reference all files that
  36. ; need to be copied. The section name will be assumed to be the driver
  37. ; file, unless there is an explicit DriverFile section listed.
  38. ;
  39. [THEMEUI.UNI]
  40. CopyFiles=@OEM.GPD
  41. CopyFiles=@THEMEUI.INI
  42. CopyFiles=THEMEUI
  43. DataFile=OEM.GPD
  44. DataSection=UNIDRV_DATA
  45. Include=NTPRINT.INF
  46. Needs=UNIDRV.OEM,UNIDRV_DATA
  47. [THEMEUI.PS]
  48. CopyFiles=@OEM.PPD
  49. CopyFiles=@THEMEUI.INI
  50. CopyFiles=THEMEUI
  51. DataFile=OEM.PPD
  52. DataSection=PSCRIPT_DATA
  53. Include=NTPRINT.INF
  54. Needs=PSCRIPT.OEM,PSCRIPT_DATA
  55. [PSUIREP.PS]
  56. CopyFiles=@OEM.PPD
  57. CopyFiles=@PSUIREP.INI
  58. CopyFiles=PSUIREP
  59. DataFile=OEM.PPD
  60. DataSection=PSCRIPT_DATA
  61. Include=NTPRINT.INF
  62. Needs=PSCRIPT.OEM,PSCRIPT_DATA
  63. ; Copy Sections
  64. ;
  65. ; Lists of files that are actually copied. These sections are referenced
  66. ; from the installer sections, above. Only create a section if it contains
  67. ; two or more files (if we only copy a single file, identify it in the
  68. ; installer section, using the @filename notation) or if it's a color
  69. ; profile (since the DestinationDirs can only handle sections, and not
  70. ; individual files).
  71. ;
  72. [THEMEUI]
  73. ThemeUI.DLL
  74. [PSUIREP]
  75. PSUIREP.DLL
  76. ;
  77. ; Location of source files not in Layout.inf.
  78. ;
  79. [SourceDisksNames]
  80. 100 = %OEMRepUISample%
  81. [SourceDisksFiles.X86]
  82. THEMEUI.DLL = 100,i386
  83. PSUIREP.DLL = 100,i386
  84. [SourceDisksFiles.IA64]
  85. THEMEUI.DLL = 100,ia64
  86. PSUIREP.DLL = 100,ia64
  87. [SourceDisksFiles]
  88. OEM.PPD = 100
  89. OEM.GPD = 100
  90. THEMEUI.INI = 100
  91. PSUIREP.INI = 100
  92. ;
  93. ; Call SetupSetDirectoryId with 66000 to set the target directory at runtime
  94. ; (depending on which environment drivers are getting installed)
  95. ;
  96. [DestinationDirs]
  97. DefaultDestDir=66000
  98. ;
  99. ; Localizable Strings
  100. ;
  101. [Strings]
  102. MS="Microsoft DDK Sample"
  103. OEMRepUISample="OEM DLL Print UI Replacement sample"