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.

174 lines
3.5 KiB

  1. ; OEMDLL.INF
  2. ;
  3. ; INF file for OEM DLL Customization samples
  4. ;
  5. ; Copyright 1999-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. "PostScript WaterMark Sample" = Win2k_WATERMARK.PS
  30. "OEM PostScript Customization Sample" = Win2k_OEMPS
  31. "OEM Unidrv Customization Sample" = Win2k_OEMUNI
  32. "OEM UI Customization Sample (PS)" = Win2k_OEMUI.PS
  33. "OEM UI Customization Sample (Unidrv)" = Win2k_OEMUI.UNI
  34. ;
  35. ; Installer Sections
  36. ;
  37. ; These sections control file installation, and reference all files that
  38. ; need to be copied. The section name will be assumed to be the driver
  39. ; file, unless there is an explicit DriverFile section listed.
  40. ;
  41. [Win2k_WATERMARK.PS]
  42. CopyFiles=@OEM.PPD
  43. CopyFiles=@WMARKPS.INI
  44. CopyFiles=WMARKPS
  45. DataFile=OEM.PPD
  46. DataSection=PSCRIPT_DATA
  47. Include=NTPRINT.INF
  48. Needs=PSCRIPT.OEM,PSCRIPT_DATA
  49. [Win2k_OEMPS]
  50. CopyFiles=@OEM.PPD
  51. CopyFiles=@OEMPS.INI
  52. CopyFiles=OEMPS
  53. DataFile=OEM.PPD
  54. DataSection=PSCRIPT_DATA
  55. Include=NTPRINT.INF
  56. Needs=PSCRIPT.OEM,PSCRIPT_DATA
  57. [Win2k_OEMUNI]
  58. CopyFiles=@OEM.GPD
  59. CopyFiles=@OEMUNI.INI
  60. CopyFiles=OEMUNI
  61. DataFile=OEM.GPD
  62. DataSection=UNIDRV_DATA
  63. Include=NTPRINT.INF
  64. Needs=UNIDRV.OEM,UNIDRV_DATA
  65. [Win2k_OEMUI.PS]
  66. CopyFiles=@OEM.PPD
  67. CopyFiles=@OEMUI.INI
  68. CopyFiles=OEMUI
  69. DataFile=OEM.PPD
  70. DataSection=PSCRIPT_DATA
  71. Include=NTPRINT.INF
  72. Needs=PSCRIPT.OEM,PSCRIPT_DATA
  73. [Win2k_OEMUI.UNI]
  74. CopyFiles=@OEM.GPD
  75. CopyFiles=@OEMUI.INI
  76. CopyFiles=OEMUI
  77. DataFile=OEM.GPD
  78. DataSection=UNIDRV_DATA
  79. Include=NTPRINT.INF
  80. Needs=UNIDRV.OEM,UNIDRV_DATA
  81. ; Copy Sections
  82. ;
  83. ; Lists of files that are actually copied. These sections are referenced
  84. ; from the installer sections, above. Only create a section if it contains
  85. ; two or more files (if we only copy a single file, identify it in the
  86. ; installer section, using the @filename notation) or if it's a color
  87. ; profile (since the DestinationDirs can only handle sections, and not
  88. ; individual files).
  89. ;
  90. [WMARKPS]
  91. WMARKPS.DLL
  92. WMARKUI.DLL
  93. [OEMPS]
  94. OEMPS.DLL
  95. [OEMUI]
  96. OEMUI.DLL
  97. [OEMUNI]
  98. OEMUNI.DLL
  99. ;
  100. ; Data Sections
  101. ;
  102. ; These sections contain data that is shared between devices.
  103. ;
  104. ;
  105. ; Location of source files not in Layout.inf.
  106. ;
  107. [SourceDisksNames]
  108. 100 = %OEMSample%
  109. [SourceDisksFiles.X86]
  110. oemps.dll = 100,i386
  111. oemui.dll = 100,i386
  112. oemuni.dll = 100,i386
  113. wmarkps.dll = 100,i386
  114. wmarkui.dll = 100,i386
  115. [SourceDisksFiles.IA64]
  116. oemps.dll = 100,ia64
  117. oemui.dll = 100,ia64
  118. oemuni.dll = 100,ia64
  119. wmarkps.dll = 100,ia64
  120. wmarkui.dll = 100,ia64
  121. [SourceDisksFiles]
  122. OEM.PPD = 100
  123. OEM.GPD = 100
  124. WMARKPS.INI = 100
  125. OEMPS.INI = 100
  126. OEMUNI.INI = 100
  127. OEMUI.INI = 100
  128. ;
  129. ; Call SetupSetDirectoryId with 66000 to set the target directory at runtime
  130. ; (depending on which environment drivers are getting installed)
  131. ;
  132. [DestinationDirs]
  133. DefaultDestDir=66000
  134. ;
  135. ; Localizable Strings
  136. ;
  137. [Strings]
  138. MS="Microsoft DDK Sample"
  139. OEMSample="OEM DLL Print samples"