Shared.SetupSectionDirectives.pas 4.4 KB

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