mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-10 13:52:16 +00:00
11 lines
290 B
C#
11 lines
290 B
C#
namespace BinaryObjectScanner.Models.NewExecutable
|
|
{
|
|
public static class Constants
|
|
{
|
|
public static readonly byte[] SignatureBytes = new byte[] { 0x4e, 0x45 };
|
|
|
|
public const string SignatureString = "NE";
|
|
|
|
public const ushort SignatureUInt16 = 0x454e;
|
|
}
|
|
} |