2025-09-26 13:06:18 -04:00
|
|
|
namespace SabreTools.Data.Models.WiseInstaller.Actions
|
2025-09-26 12:09:34 -04:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Include Script
|
2025-10-30 23:54:22 -04:00
|
|
|
///
|
2025-09-26 12:09:34 -04:00
|
|
|
/// 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.
|
2025-10-30 23:54:22 -04:00
|
|
|
///
|
2025-09-26 12:09:34 -04:00
|
|
|
/// 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.
|
|
|
|
|
/// </summary>
|
2025-10-30 23:54:22 -04:00
|
|
|
/// <see href="https://codeberg.org/CYBERDEV/REWise/src/branch/master/src/wisescript.h"/>
|
|
|
|
|
/// <see href="https://www.manualslib.com/manual/404969/Symantec-Wisescript-Editor-8-0-Reference-For-Wise-Package-Studio-V1-0.html"/>
|
2025-09-26 12:09:34 -04:00
|
|
|
public class IncludeScript : MachineStateData
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Count of sequential 0x1B bytes, excluding the original opcode
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int Count { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|