home *** CD-ROM | disk | FTP | other *** search
/ Špidla: Hráčůj ráj 2 / Hracuv-raj-2.bin / deucpokr / setup.inf < prev   
Encoding:
Windows Setup INFormation  |  1999-07-22  |  7.0 KB  |  241 lines

  1. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2. ;
  3. ;  Version identifies stlye (WIN4) and class
  4. ;  Class is usually used to get all infs for a
  5. ;  product or driver type if an exe it giving
  6. ;  users a list of things to install, for example 
  7. ;  all video drivers infs in the windows\inf directory
  8. ;
  9. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  10.  
  11. [version]
  12. signature="$CHICAGO$"
  13. provider=%PROVIDER%
  14.  
  15. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  16. ;
  17. ;  Install sections, these are the options
  18. ;  for building the installation file lists
  19. ;
  20. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  21.  
  22. [DefaultInstall]
  23.  
  24. [ProductInstall]
  25. CopyFiles=Product.copy.files
  26. AddReg=Product.Add.Reg
  27. UpdateInis=Product.links
  28.  
  29. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  30. ; Uninstall
  31.  
  32. [DefaultUninstall]
  33. ; be sure to remove everything
  34. DelFiles=Product.del.files,
  35. DelReg=Product.Del.Reg
  36. UpdateInis=del.links
  37.  
  38. [MyProgramUninstall]
  39. ; be sure to remove everything
  40. DelFiles=Product.copy.files
  41. DelReg=Product.Del.Reg
  42. UpdateInis=del.links
  43.  
  44.  
  45.  
  46. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  47. ;
  48. ;  Registry sections, used by different install
  49. ;  sections above
  50. ;
  51. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  52.  
  53. [Product.Add.Reg]
  54. ;
  55. ; Product Registry entries here
  56. ; For compatibility you must specify 0,1,2,3 for the fourth
  57. ; parameter if you want to specify a value
  58. ;
  59. HKLM,SOFTWARE\CVI\DeucesWild,"Version",0,"1.0"
  60. HKCR,.dwp\DefaultIcon,"",0,"%65600%\DWDoc.ico"
  61. HKCR,.dwp\Directory,"",0,"%65600%"
  62. ;HKLM,SOFTWARE\MyCompany\MyProduct\Test1,"Allow International Export",0,"Yes"
  63. ;HKLM,SOFTWARE\MyCompany\MyProduct\Test1,"MyProduct Data Value",0,"Data 1"
  64. ;HKLM,SOFTWARE\MyCompany\MyProduct\Test1,"MyProduct A Number",1,0x1
  65. ;HKLM,SOFTWARE\MyCompany\MyProduct\Test1,"MyProduct Number2",1,0xC2
  66. ;HKLM,SOFTWARE\MyCompany\MyProduct\Test1\"MyProduct Extra Key",ValueD1,0,"Test Data"
  67. ;
  68. ; Register shared components, note these are bogus names in this sample
  69. ;
  70.  
  71. ;
  72. ; for add/remove programs applet
  73. ;
  74. HKLM,SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\DeucesWild,"DisplayName",0,"Deuces Wild Poker Version 1.0"
  75. HKLM,SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\DeucesWild,"UninstallString",0,"Rundll32.exe setupapi.dll,InstallHinfSection DefaultUninstall 132 "%65600%"\setup.inf"
  76.  
  77. ;;;;;;;;;
  78. ;
  79. ; registry delete works by pruning the tree,
  80. ; so if you have interdependent values, put thems in subkeys and
  81. ; not in values of the main key since when you prune all the values are lost
  82. ;
  83.  
  84. [Product.Del.Reg]
  85. ;
  86. ;Registry entries here
  87. ;
  88.  
  89. HKLM,SOFTWARE\CVI\DeucesWild,"Version",,
  90. ;HKLM,SOFTWARE\MyCompany\MyProduct\Test1,,,
  91. ;HKLM,SOFTWARE\MyCompany\MyProduct\Test1,,,
  92. ;HKLM,SOFTWARE\MyCompany\MyProduct\Test1,,,
  93. ;HKLM,SOFTWARE\MyCompany\MyProduct\Test1,,,
  94. ;HKLM,SOFTWARE\MyCompany\MyProduct\Test1\"MyProduct Extra Key",,
  95. ;HKCU,SOFTWARE\MyCompany\MyProduct,,,
  96.  
  97. ;
  98. ; for add/remove programs applet
  99. ;
  100.  
  101. HKLM,SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\DeucesWild,"DisplayName",,
  102. HKLM,SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\DeucesWild,"UninstallString",,
  103. HKCU,SoftWare\Microsoft\Windows\CurrentVersion\Uninstall\DeucesWild,,,
  104.  
  105.  
  106.  
  107. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  108. ;
  109. ; Disk lay out information, used by the CopyFiles lists
  110. ;
  111. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  112. ;
  113. ; This is the source disk identifiers the number at the
  114. ; beginning maps to the SourceDisksFiles first parameter
  115.  
  116. [SourceDisksNames]
  117. 1="The Product Source Disk Name, 1.0","",1
  118.  
  119. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  120. ;
  121. ; SourceDisksFiles -
  122. ; this must have ALL file names in any copyfiles section
  123. ; so that the default copyfile error callback dialog (browse,skip)
  124. ; can use the SourceDisksNames strings above to help find the file
  125. ; -- this infomation can also be put in a layout.inf
  126. ;
  127. ; filename_on_source = diskid,subdir,size,checksum,spare,spare
  128.  
  129. [SourceDisksFiles]
  130. DeucesWild.exe = 1,,,,,
  131. DeucesWild.hlp = 1,,,,,
  132. DeucesWild.cnt = 1,,,,,
  133. DWDoc.ico = 1,,,,,
  134. Dwsw32.dll = 1,,,,,
  135. Setup.exe = 1,,,,,
  136. setup.inf = 1,,,,,
  137. License.txt = 1,,,,,
  138. ReadMe.txt = 1,,,,,
  139. order.txt = 1,,,,,
  140.  
  141.  
  142. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  143. ;
  144. ; Targetdirectories predefined for [DestinationDirs] section
  145. ;   parameter number one  
  146. ;     00 = null, use only the second parameter for a path
  147. ;     11 = windows system directory
  148. ;     ...
  149. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  150.  
  151. [DestinationDirs]
  152.  
  153. Product.del.files=01      ; 01 is the source directory
  154.  
  155. ;
  156. ; Run time defined strings, these are set with 
  157. ; SetupSetDirectoryId once this inf is openned
  158. ;
  159.  
  160. Product.copy.files=65600   ; 65600 is a random choice for a dirid
  161.  
  162.  
  163.  
  164. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  165. ;
  166. ; These are the CopyFiles lists, here is where the files
  167. ; for each component are defined
  168. ; Note the last param (parm 4) is the CopyFlag for that
  169. ; File, for example 8 means copy on  restart--see the doc for more
  170. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  171.  
  172. [Product.copy.files]
  173. DeucesWild.exe
  174. DeucesWild.hlp
  175. DeucesWild.cnt
  176. DWDoc.ico
  177. Dwsw32.dll
  178. Setup.exe
  179. setup.inf
  180. License.txt
  181. ReadMe.txt
  182. order.txt
  183.  
  184. [Product.del.files]
  185. DeucesWild.exe
  186. DeucesWild.hlp
  187. DeucesWild.cnt
  188. DWDoc.ico
  189. Dwsw32.dll
  190. Setup.exe
  191. setup.inf
  192. License.txt
  193. ReadMe.txt
  194. order.txt
  195.  
  196. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  197. ;
  198. ; INI sections, used to create and delete icons 
  199. ;  other uses are possible
  200. ;
  201. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  202. [Product.links]
  203. ;create folders
  204. ;setup.ini, progman.groups,,"ProductGroup=The Product Group"     
  205. ; create links
  206. ; second param must match above and the linked to file must really exist
  207. ;setup.ini, ProductGroup,,"%PRODUCT_DESC%,%65600%\Product.dll,,,"
  208. ;setup.ini, ProductGroup,,"%README_DESC%,%65600%\readme.txt,,," 
  209. ;Add desktop icons here
  210.  
  211. [del.links]
  212. ;remove folders
  213. ;setup.ini, progman.groups,,"ProductGroup=The Product Group"     
  214. ; remove links
  215. ; second param must match above and last param is EXACT description name
  216. ;setup.ini, ProductGroup,,"%PRODUCT_DESC%" 
  217. ;setup.ini, ProductGroup,,"%README_DESC%" 
  218. ;remove desktop icons here
  219.  
  220. [del.links.old]
  221. ;setup.ini, progman.groups,,"MyProductFolderOld=%DESC_OLD%"
  222. ;setup.ini, MyProductFolderOld,, """%README_DESC%"""
  223.  
  224. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  225. ;
  226. ; Strings replace variable in percents above
  227. ;
  228. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  229. [Strings]
  230. PRODUCT_DESC    = "Deuces Wild Poker v1.0"
  231. DT_MESSAGES     = "Deuces Wild Poker"
  232. DT_DESKTOP      = "Desktop"
  233. DESC_OLD        = "Old Product"    ; removes old links
  234. README_DESC     = "Read Me (Product)"
  235. PROVIDER        = "Crescent Vision Interactive, LLC"
  236. DESTINATION_DIR = "c:\Program Files\Crescent Vision\Deuces Wild\"
  237. PROGRAM_GROUP   = "Deuces Wild Poker"
  238. PROGRAM_EXE    = "DeucesWild.exe"
  239. PROGRAM_HELP    = "DeucesWild.hlp"
  240.