fs.mitm: implement ifilesystem wrapper

This commit is contained in:
Michael Scire
2019-03-22 09:51:47 -07:00
parent c8a4a6dc58
commit bcf20b4441
4 changed files with 383 additions and 128 deletions

View File

@@ -24,6 +24,8 @@ static constexpr Result ResultFsOutOfRange = MAKERESULT(Module_Fs, 300
static constexpr Result ResultFsInvalidArgument = MAKERESULT(Module_Fs, 6001);
static constexpr Result ResultFsInvalidPath = MAKERESULT(Module_Fs, 6002);
static constexpr Result ResultFsTooLongPath = MAKERESULT(Module_Fs, 6003);
static constexpr Result ResultFsInvalidCharacter = MAKERESULT(Module_Fs, 6004);
static constexpr Result ResultFsInvalidOffset = MAKERESULT(Module_Fs, 6061);
static constexpr Result ResultFsInvalidSize = MAKERESULT(Module_Fs, 6062);