mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-12 17:23:01 +00:00
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.Serialization` still builds the normal Nuget package that is used by all other projects and includes all namespaces.
37 lines
1021 B
C#
37 lines
1021 B
C#
namespace SabreTools.Data.Models.SecuROM
|
|
{
|
|
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>
|
|
/// Similar use to <see cref="Dependency"/>
|
|
/// </summary>
|
|
Unknown0x08 = 0x08,
|
|
}
|
|
}
|