FS: Support the file Append open mode.

This commit is contained in:
Subv 2018-03-19 22:57:34 -05:00
parent b15d0a65c4
commit 8144364cc2
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 {