mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-14 05:36:07 +00:00
11 lines
306 B
C#
11 lines
306 B
C#
|
|
namespace BurnOutSharp.Models.PortableExecutable
|
||
|
|
{
|
||
|
|
public static class Constants
|
||
|
|
{
|
||
|
|
public static readonly byte[] SignatureBytes = new byte[] { 0x50, 0x45, 0x00, 0x00 };
|
||
|
|
|
||
|
|
public const string SignatureString = "PE\0\0";
|
||
|
|
|
||
|
|
public const uint SignatureUInt32 = 0x00004550;
|
||
|
|
}
|
||
|
|
}
|