Prototype VFS API.

This commit is contained in:
David Given
2022-08-24 00:32:36 +02:00
parent e733dc90d8
commit 82fd336792
5 changed files with 129 additions and 28 deletions

13
lib/vfs/vfs.proto Normal file
View File

@@ -0,0 +1,13 @@
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"];
}