OEMSETUP.INF
上传用户:yuandong
上传日期:2022-08-08
资源大小:954k
文件大小:4k
源码类别:

Delphi控件源码

开发平台:

C++ Builder

  1. ;
  2. ; virtual printer INF for NT 4.0 and Win95.
  3. [Version]
  4. Signature="$Windows NT$"
  5. Provider=%MS%
  6. LayoutFile=layout.inf
  7. PrintProcessor=vprproc,vprproc.dll
  8. ClassGUID={4D36E979-E325-11CE-BFC1-08002BE10318}
  9. Class=Printer
  10. [ClassInstall]
  11. AddReg=ClassAddReg
  12. DelReg=ClassDelReg
  13. [ClassDelReg]
  14. HKLM,"SystemCurrentControlSetServicesClassPrinter","NoUseClass"
  15. [ClassAddReg]
  16. HKR,,,,%CLASSNAME%
  17. HKR,,Installer,,MSPRINT.DLL
  18. HKR,,Icon,,-4
  19. HKR,,NoDisplayClass,,1
  20. [Environment]
  21. UpdateInis=Environment_Ini
  22. AddReg=Environment_Reg
  23. [Environment_Ini]
  24. win.ini,Ports,"LPT1.DOS=",
  25. win.ini,Ports,"LPT2.DOS=",
  26. win.ini,Ports,"LPT3.DOS=",
  27. win.ini,Ports,"LPT1.OS2=",
  28. win.ini,Ports,"LPT2.OS2=",
  29. win.ini,Ports,"LPT3.OS2=",
  30. win.ini,windows,"Spooler=",
  31. win.ini,windows,"DosPrint=",
  32. win.ini,windows,"DeviceNotSelectedTimeout=",
  33. win.ini,windows,"TransmissionRetryTimeout=",
  34. [Environment_Reg]
  35. HKLM,"SystemCurrentControlSetControlPrintEnvironmentsWindows 4.0","Directory",,"CHICAGO"
  36. HKLM,"SystemCurrentControlSetControlPrintEnvironmentsWindows 4.0Drivers",,,
  37. HKLM,"SystemCurrentControlSetControlPrintEnvironmentsWindows 4.0Print Processors",,,
  38. HKLM,"SystemCurrentControlSetControlPrintMonitors",,,
  39. HKLM,"SystemCurrentControlSetControlPrintPrinters",,,
  40. HKLM,"SystemCurrentControlSetControlPrintPrinters","StartOnBoot",1,01,00,00,00
  41. HKLM,"SystemCurrentControlSetControlPrintProviders",,,
  42. ;
  43. ; Manufacturer Sections
  44. ;
  45. ; This section lists all of the manufacturers that we will
  46. ; display in the Dialog box.
  47. ;
  48. [Manufacturer]
  49. "!OEM"
  50. ;
  51. ; Model Sections 
  52. ;
  53. ; These sections correspond with an entry listed in the
  54. ; [Manufacturer] section above. The models will be displayed in the order
  55. ; that they appear here.
  56. ;
  57. [!OEM]
  58. "Virtual Printer"              = vprint.dll
  59. ;
  60. ; Installer Sections
  61. ;
  62. ; These sections control file installation, and reference all files that
  63. ; need to be copied. The section name will be assumed to be the driver data
  64. ; file, unless there is an explicit DataFile section listed.
  65. ;
  66. ; Also note the ".NT" or ".WIN" notation. This is done to allow for a single INF to 
  67. ; work on Win9x and WinNT. When this format is used, the DataFile must be declared explicitly. 
  68. ; Win95 does not support this notation, so the old format is used.
  69. ; See the latest WinNT DDK for more info.   
  70. ;
  71. [vprint.dll.NT]
  72. CopyFiles=@vprint.dll,RASDD_NT
  73. DataFile=vprint.dll
  74. DataSection=RASDD_DATA_NT
  75. [vprint.dll]
  76. CopyFiles=@vprint.dll,RASDD_Win
  77. DataSection=RASDD_DATA_Win
  78. ; Copy Sections
  79. ;
  80. ; Lists of files that are actually copied. These sections are referenced
  81. ; from the installer sections above. Only create a section if it contains
  82. ; two or more files (if we only copy a single file, identify it in the
  83. ; installer section, using the @filename notation) or if it's a color
  84. ; profile (since the DestinationDirs can only handle sections, and not
  85. ; individual files).
  86. ;
  87. [RASDD_NT]
  88. RASDD.DLL
  89. RASDDUI.DLL
  90. RASDDUI.HLP
  91. ;
  92. ; Data Sections
  93. ;
  94. ; These sections contain data that is shared between devices.
  95. ;
  96. [RASDD_DATA_NT]
  97. DriverFile=RASDD.DLL
  98. ConfigFile=RASDDUI.DLL
  99. HelpFile=RASDDUI.HLP
  100. ;
  101. ; Call SetupSetDirectoryId with 66000 to set the target directory at runtime
  102. ; (depending on which environment drivers are getting installed)
  103. ;
  104. [DestinationDirs]
  105. DefaultDestDir=66000
  106. ;
  107. ; diskid = description,tagfile,unused,subdir
  108. ;
  109. [SourceDisksNames]
  110. 4 = %Floppy%,,,""
  111. ;
  112. ; filename_on_source = diskid,subdir,size,checksum,spare,spare
  113. ; extra fields are nt-specific
  114. ;   bootmediaord,targetdirectory,upgradedisposition,textmodedisposition,targetname
  115. ;
  116. [SourceDisksFiles]
  117. vprint.dll = 4,,,,,,,11,3
  118. ;
  119. ; Localizable Strings
  120. ;
  121. [Strings]
  122. MS="Microsoft"
  123. Floppy="OEM Printer Disk"
  124. CLASSNAME="Printer"
  125. PJL_MONITOR="PJL Language Monitor,PJLMON.DLL"
  126. PS_MONITOR="PostScript Language Monitor,PSMON.DLL"