mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-11 05:35:15 +00:00
11 lines
297 B
C#
11 lines
297 B
C#
namespace BinaryObjectScanner.Models.SFFS
|
|
{
|
|
public static class Constants
|
|
{
|
|
public static readonly byte[] SignatureBytes = new byte[] { 0x53, 0x46, 0x46, 0x53 };
|
|
|
|
public const string SignatureString = "SFFS";
|
|
|
|
public const uint SignatureUInt32 = 0x53464653;
|
|
}
|
|
} |