Files

37 lines
1021 B
C#
Raw Permalink Normal View History

2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.SecuROM
2025-09-26 12:09:34 -04:00
{
public enum MatroshkaEntryType : uint
{
/// <summary>
/// Helper or activation executable
/// </summary>
Helper = 0x01,
/// <summary>
/// Main executable, usually one of the following:
/// - RC-encrypted executable to be decrypted later
/// - Main game program executable
/// - Revoker executable
/// </summary>
/// <remarks>Usually the second entry</remarks>
Main = 0x02,
/// <summary>
/// Required libraries for the main executable
/// </summary>
/// <remarks>
/// Examples include:
/// - DFA.dll for RC-encrypted executables
/// - paul.dll for PA-protected games
/// - remover.exe for revocation
/// executables.
/// </remarks>
Dependency = 0x04,
/// <summary>
2025-10-30 23:34:06 -04:00
/// Similar use to <see cref="Dependency"/>
2025-09-26 12:09:34 -04:00
/// </summary>
Unknown0x08 = 0x08,
}
2025-10-30 23:34:06 -04:00
}