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

Delphi控件源码

开发平台:

C++ Builder

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