SetupSectionDirectives.pas 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. unit SetupSectionDirectives;
  2. {
  3. Inno Setup
  4. Copyright (C) 1997-2020 Jordan Russell
  5. Portions by Martijn Laan
  6. For conditions of distribution and use, see LICENSE.TXT.
  7. Setup section directives
  8. }
  9. interface
  10. type
  11. TSetupSectionDirective = (
  12. ssAllowCancelDuringInstall,
  13. ssAllowNetworkDrive,
  14. ssAllowNoIcons,
  15. ssAllowRootDirectory,
  16. ssAllowUNCPath,
  17. ssAlwaysRestart,
  18. ssAlwaysShowComponentsList,
  19. ssAlwaysShowDirOnReadyPage,
  20. ssAlwaysShowGroupOnReadyPage,
  21. ssAlwaysUsePersonalGroup,
  22. ssAppCopyright,
  23. ssAppendDefaultDirName,
  24. ssAppendDefaultGroupName,
  25. ssAppComments,
  26. ssAppContact,
  27. ssAppId,
  28. ssAppModifyPath,
  29. ssAppMutex,
  30. ssAppName,
  31. ssAppPublisher,
  32. ssAppPublisherURL,
  33. ssAppReadmeFile,
  34. ssAppSupportPhone,
  35. ssAppSupportURL,
  36. ssAppUpdatesURL,
  37. ssAppVerName,
  38. ssAppVersion,
  39. ssArchitecturesAllowed,
  40. ssArchitecturesInstallIn64BitMode,
  41. ssASLRCompatible,
  42. ssBackColor,
  43. ssBackColor2,
  44. ssBackColorDirection,
  45. ssBackSolid,
  46. ssChangesAssociations,
  47. ssChangesEnvironment,
  48. ssCloseApplications,
  49. ssCloseApplicationsFilter,
  50. ssCompression,
  51. ssCompressionThreads,
  52. ssCreateAppDir,
  53. ssCreateUninstallRegKey,
  54. ssDefaultDialogFontName,
  55. ssDefaultDirName,
  56. ssDefaultGroupName,
  57. ssDefaultUserInfoName,
  58. ssDefaultUserInfoOrg,
  59. ssDefaultUserInfoSerial,
  60. ssDEPCompatible,
  61. ssDirExistsWarning,
  62. ssDisableDirPage,
  63. ssDisableFinishedPage,
  64. ssDisableProgramGroupPage,
  65. ssDisableReadyMemo,
  66. ssDisableReadyPage,
  67. ssDisableStartupPrompt,
  68. ssDisableWelcomePage,
  69. ssDiskClusterSize,
  70. ssDiskSliceSize,
  71. ssDiskSpanning,
  72. ssDontMergeDuplicateFiles,
  73. ssEnableDirDoesntExistWarning,
  74. ssEncryption,
  75. ssExtraDiskSpaceRequired,
  76. ssFlatComponentsList,
  77. ssInfoAfterFile,
  78. ssInfoBeforeFile,
  79. ssInternalCompressLevel,
  80. ssLanguageDetectionMethod,
  81. ssLicenseFile,
  82. ssLZMAAlgorithm,
  83. ssLZMABlockSize,
  84. ssLZMADictionarySize,
  85. ssLZMAMatchFinder,
  86. ssLZMANumBlockThreads,
  87. ssLZMANumFastBytes,
  88. ssLZMAUseSeparateProcess,
  89. ssMergeDuplicateFiles,
  90. ssMessagesFile,
  91. ssMinVersion,
  92. ssMissingMessagesWarning,
  93. ssMissingRunOnceIdsWarning,
  94. ssNotRecognizedMessagesWarning,
  95. ssOnlyBelowVersion,
  96. ssOutput,
  97. ssOutputBaseFilename,
  98. ssOutputDir,
  99. ssOutputManifestFile,
  100. ssPassword,
  101. ssPrivilegesRequired,
  102. ssPrivilegesRequiredOverridesAllowed,
  103. ssReserveBytes,
  104. ssRestartApplications,
  105. ssRestartIfNeededByRun,
  106. ssSetupIconFile,
  107. ssSetupLogging,
  108. ssSetupMutex,
  109. ssShowComponentSizes,
  110. ssShowLanguageDialog,
  111. ssShowTasksTreeLines,
  112. ssShowUndisplayableLanguages,
  113. ssSignedUninstaller,
  114. ssSignedUninstallerDir,
  115. ssSignTool,
  116. ssSignToolMinimumTimeBetween,
  117. ssSignToolRetryCount,
  118. ssSignToolRetryDelay,
  119. ssSignToolRunMinimized,
  120. ssSlicesPerDisk,
  121. ssSolidCompression,
  122. ssSourceDir,
  123. ssTerminalServicesAware,
  124. ssTimeStampRounding,
  125. ssTimeStampsInUTC,
  126. ssTouchDate,
  127. ssTouchTime,
  128. ssUpdateUninstallLogAppName,
  129. ssUninstallable,
  130. ssUninstallDisplayIcon,
  131. ssUninstallDisplayName,
  132. ssUninstallDisplaySize,
  133. ssUninstallFilesDir,
  134. ssUninstallIconFile,
  135. ssUninstallLogging,
  136. ssUninstallLogMode,
  137. ssUninstallRestartComputer,
  138. ssUninstallStyle,
  139. ssUsedUserAreasWarning,
  140. ssUsePreviousAppDir,
  141. ssUsePreviousGroup,
  142. ssUsePreviousLanguage,
  143. ssUsePreviousPrivileges,
  144. ssUsePreviousSetupType,
  145. ssUsePreviousTasks,
  146. ssUsePreviousUserInfo,
  147. ssUseSetupLdr,
  148. ssUserInfoPage,
  149. ssVersionInfoCompany,
  150. ssVersionInfoCopyright,
  151. ssVersionInfoDescription,
  152. ssVersionInfoOriginalFileName,
  153. ssVersionInfoProductName,
  154. ssVersionInfoProductVersion,
  155. ssVersionInfoProductTextVersion,
  156. ssVersionInfoTextVersion,
  157. ssVersionInfoVersion,
  158. ssWindowResizable,
  159. ssWindowShowCaption,
  160. ssWindowStartMaximized,
  161. ssWindowVisible,
  162. ssWizardImageAlphaFormat,
  163. ssWizardImageBackColor,
  164. ssWizardImageFile,
  165. ssWizardImageStretch,
  166. ssWizardResizable,
  167. ssWizardSmallImageBackColor,
  168. ssWizardSmallImageFile,
  169. ssWizardSizePercent,
  170. ssWizardStyle);
  171. implementation
  172. end.