2023-03-07 16:59:14 -05:00
|
|
|
namespace BinaryObjectScanner.Models.LinearExecutable
|
2022-12-28 10:31:28 -08:00
|
|
|
{
|
|
|
|
|
public static class Constants
|
|
|
|
|
{
|
|
|
|
|
public static readonly byte[] DebugInformationSignatureBytes = new byte[] { 0x4e, 0x42, 0x30 };
|
|
|
|
|
|
|
|
|
|
public const string DebugInformationSignatureString = "NB0";
|
|
|
|
|
|
|
|
|
|
public static readonly byte[] LESignatureBytes = new byte[] { 0x4c, 0x45 };
|
|
|
|
|
|
|
|
|
|
public const string LESignatureString = "LE";
|
|
|
|
|
|
|
|
|
|
public const ushort LESignatureUInt16 = 0x454c;
|
|
|
|
|
|
|
|
|
|
public static readonly byte[] LXSignatureBytes = new byte[] { 0x4c, 0x58 };
|
|
|
|
|
|
|
|
|
|
public const string LXSignatureString = "LX";
|
|
|
|
|
|
|
|
|
|
public const ushort LXSignatureUInt16 = 0x584c;
|
|
|
|
|
}
|
|
|
|
|
}
|