mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
28 lines
425 B
Protocol Buffer
28 lines
425 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
import "lib/common.proto";
|
|
|
|
message AcornDfsProto {
|
|
enum Flavour {
|
|
UNDEFINED = 0;
|
|
ACORN_DFS = 1;
|
|
}
|
|
|
|
optional Flavour flavour = 1 [default = ACORN_DFS, (help) = "which flavour of DFS to implement"];
|
|
}
|
|
|
|
message Brother120FsProto {
|
|
}
|
|
|
|
message FatFsProto {
|
|
}
|
|
|
|
message FilesystemProto {
|
|
oneof filesystem {
|
|
AcornDfsProto acorndfs = 1;
|
|
Brother120FsProto brother120 = 2;
|
|
FatFsProto fatfs = 3;
|
|
}
|
|
}
|
|
|