namespace SabreTools.Data.Models.WiseInstaller.Actions { /// /// Include Script /// /// This action adds an additional script to the current installation script. During compile, /// the include script is copied into the calling script at the location of the Include Script /// action, resulting in a combination of the scripts. /// /// Include scripts can save time because you can develop a library of WiseScripts that /// perform specific functions, like subroutines. You can re-use include scripts and share /// them with colleagues. They typically contain just a few lines of code, such as calling an /// .EXE or displaying a particular dialog box. Include scripts can be any size with the /// limitation that the calling script plus include scripts cannot be more than 32,000 lines. /// /// /// public class IncludeScript : MachineStateData { /// /// Count of sequential 0x1B bytes, excluding the original opcode /// public int Count { get; set; } } }