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.

121 lines
2.5 KiB

  1. ; UISAMPLES.INF
  2. ;
  3. ; INF file for OEM DLL UI samples
  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. "OEM Custom UI Plugin" = SYNCSET.UNI
  30. "OEM Custom Help" = CUSTHELP.UNI
  31. ;
  32. ; Installer Sections
  33. ;
  34. ; These sections control file installation, and reference all files that
  35. ; need to be copied. The section name will be assumed to be the driver
  36. ; file, unless there is an explicit DriverFile section listed.
  37. ;
  38. [SYNCSET.UNI]
  39. CopyFiles=@SYNCSET.GPD
  40. CopyFiles=@SYNCSET.INI
  41. CopyFiles=SYNCSET
  42. DataFile=SYNCSET.GPD
  43. DataSection=UNIDRV_DATA
  44. Include=NTPRINT.INF
  45. Needs=UNIDRV.OEM,UNIDRV_DATA
  46. [CUSTHELP.UNI]
  47. CopyFiles=@custhlp.gpd
  48. CopyFiles=@custhlp.INI
  49. CopyFiles=CUSTHLP
  50. DataFile=custhlp.gpd
  51. DataSection=UNIDRV_DATA
  52. Include=NTPRINT.INF
  53. Needs=UNIDRV.OEM,UNIDRV_DATA
  54. ; Copy Sections
  55. ;
  56. ; Lists of files that are actually copied. These sections are referenced
  57. ; from the installer sections, above. Only create a section if it contains
  58. ; two or more files (if we only copy a single file, identify it in the
  59. ; installer section, using the @filename notation) or if it's a color
  60. ; profile (since the DestinationDirs can only handle sections, and not
  61. ; individual files).
  62. ;
  63. [SYNCSET]
  64. SYNCSET.DLL
  65. [CUSTHLP]
  66. CUSTOMDRV.HLP
  67. CUSTHLP.DLL
  68. ;
  69. ; Location of source files not in Layout.inf.
  70. ;
  71. [SourceDisksNames]
  72. 100 = %OEMUISample%
  73. [SourceDisksFiles.X86]
  74. CUSTHLP.DLL = 100,i386
  75. SYNCSET.DLL = 100,i386
  76. [SourceDisksFiles.IA64]
  77. CUSTHLP.DLL = 100,ia64
  78. SYNCSET.DLL = 100,ia64
  79. [SourceDisksFiles]
  80. SYNCSET.GPD = 100
  81. custhlp.gpd = 100
  82. CUSTHLP.ini = 100
  83. SYNCSET.ini = 100
  84. CUSTHLP.hlp = 100
  85. ;
  86. ; Call SetupSetDirectoryId with 66000 to set the target directory at runtime
  87. ; (depending on which environment drivers are getting installed)
  88. ;
  89. [DestinationDirs]
  90. DefaultDestDir=66000
  91. ;
  92. ; Localizable Strings
  93. ;
  94. [Strings]
  95. MS="Microsoft DDK Sample"
  96. OEMUISample="OEM DLL Print UI Samples"