GoSBHPF/SBHPFv1/constants.go
2025-02-14 17:00:47 +01:00

10 lines
330 B
Go

package sbhpfv1
// Constants for file format.
// These are statically set in version 1 of SBHPF,
// but can be used to achieve an extended feature-set in future versions,
// while maintaining backwards compatibility.
const (
FormatVersion = 0x01 // Current version
ExtendedFeatureFlag = 0x00 // Reserved for future use
)