FS: Support the file Append open mode.

This commit is contained in:
Subv 2018-03-19 22:57:34 -05:00
parent 808704c78c
commit fc44261dd1
2 changed files with 23 additions and 2 deletions

View file

@ -35,6 +35,7 @@ enum EntryType : u32 {
enum class Mode : u32 {
Read = 1,
Write = 2,
Append = 4,
};
class Path {