mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-10 21:30:24 +00:00
17 lines
539 B
C#
17 lines
539 B
C#
namespace BinaryObjectScanner.Models.XZP
|
|
{
|
|
public static class Constants
|
|
{
|
|
public static readonly byte[] HeaderSignatureBytes = new byte[] { 0x70, 0x69, 0x5a, 0x78 };
|
|
|
|
public const string HeaderSignatureString = "piZx";
|
|
|
|
public const uint HeaderSignatureUInt32 = 0x785a6970;
|
|
|
|
public static readonly byte[] FooterSignatureBytes = new byte[] { 0x74, 0x46, 0x7a, 0x58 };
|
|
|
|
public const string FooterSignatureString = "tFzX";
|
|
|
|
public const uint FooterSignatureUInt32 = 0x587a4674;
|
|
}
|
|
} |