summaryrefslogtreecommitdiff
path: root/src/msg.fbs
diff options
context:
space:
mode:
Diffstat (limited to 'src/msg.fbs')
-rw-r--r--src/msg.fbs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/msg.fbs b/src/msg.fbs
index fcf29ad58..9776bb893 100644
--- a/src/msg.fbs
+++ b/src/msg.fbs
@@ -65,6 +65,7 @@ union Any {
NowRes,
IsTTY,
IsTTYRes,
+ Seek,
}
enum ErrorKind: byte {
@@ -117,6 +118,7 @@ enum ErrorKind: byte {
// custom errors
InvalidUri,
+ InvalidSeekMode,
}
table Cwd {}
@@ -496,4 +498,10 @@ table IsTTYRes {
stderr: bool;
}
+table Seek {
+ rid: uint32;
+ offset: int;
+ whence: uint;
+}
+
root_type Base;