Files
fluxengine/lib/vfs/vfs.proto
2022-08-24 20:21:55 +02:00

22 lines
357 B
Protocol Buffer

syntax = "proto2";
import "lib/common.proto";
message DfsProto {
enum Flavour {
UNDEFINED = 0;
ACORN_DFS = 1;
}
optional Flavour flavour = 1 [default = ACORN_DFS, (help) = "which flavour of DFS to implement"];
}
message Brother120FsProto {
}
message FilesystemProto {
optional DfsProto dfs = 1;
optional Brother120FsProto brother120fs = 2;
}