30 lines
887 B
C#
30 lines
887 B
C#
namespace InnoPatcher;
|
|
|
|
[Flags]
|
|
public enum InnoHeaderOption {
|
|
DisableStartupPrompt = 0x000001,
|
|
Uninstallable = 0x000002,
|
|
CreateAppDir = 0x000004,
|
|
DisableDirPage = 0x000008,
|
|
DisableProgramGroupPage = 0x000010,
|
|
AllowNoIcons = 0x000020,
|
|
AlwaysRestart = 0x000040,
|
|
AlwaysUsePersonalGroup = 0x000080,
|
|
WindowVisible = 0x000100,
|
|
WindowShowCaption = 0x000200,
|
|
WindowResizable = 0x000400,
|
|
WindowStartMaximized = 0x000800,
|
|
EnableDirDoesntExistWarning = 0x001000,
|
|
DisableAppendDir = 0x002000,
|
|
Password = 0x004000,
|
|
AllowRootDirectory = 0x008000,
|
|
DisableFinishedPage = 0x010000,
|
|
AdminPrivilegesRequired = 0x020000,
|
|
AlwaysCreateUninstallIcon = 0x040000,
|
|
ChangesAssociations = 0x080000,
|
|
CreateUninstallRegKey = 0x100000,
|
|
UsePreviousAppDir = 0x200000,
|
|
BackColorHorizontal = 0x400000,
|
|
UsePreviousGroup = 0x800000,
|
|
UpdateUninstallLogAppName = 0x1000000,
|
|
} |