Files
SabreTools.Serialization/SabreTools.Data.Models/InstallShieldExecutable/Constants.cs

16 lines
507 B
C#
Raw Normal View History

namespace SabreTools.Data.Models.InstallShieldExecutable
{
public static class Constants
{
/// <summary>
/// The signature for one of two kinds of currently unsupported ISEXE formats.
/// </summary>
public const string ISSignatureString = "InstallShield";
/// <summary>
/// The signature for one of two kinds of currently unsupported ISEXE formats.
/// </summary>
public const string ISSetupSignatureString = "ISSetupStream";
}
2026-01-25 13:38:52 -05:00
}