mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
23 lines
342 B
Protocol Buffer
23 lines
342 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
enum FluxMagic {
|
|
MAGIC = 0x466c7578;
|
|
}
|
|
|
|
enum FluxFileVersion {
|
|
VERSION_1 = 1;
|
|
}
|
|
|
|
message TrackFluxProto {
|
|
optional int32 cylinder = 1;
|
|
optional int32 head = 2;
|
|
optional bytes flux = 3;
|
|
}
|
|
|
|
message FluxFileProto {
|
|
optional int32 magic = 1;
|
|
optional FluxFileVersion version = 2;
|
|
repeated TrackFluxProto track = 3;
|
|
}
|
|
|