summaryrefslogtreecommitdiff
path: root/src/fs/virtfs/fs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/virtfs/fs.h')
-rw-r--r--src/fs/virtfs/fs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fs/virtfs/fs.h b/src/fs/virtfs/fs.h
index 8b5df99ef..a6b787d6e 100644
--- a/src/fs/virtfs/fs.h
+++ b/src/fs/virtfs/fs.h
@@ -33,7 +33,7 @@ namespace VirtFs
{
struct File;
struct FsEntry;
- struct VirtList;
+ struct List;
void init(const std::string &restrict name);
void updateDirSeparator();
@@ -41,10 +41,10 @@ namespace VirtFs
const char *getBaseDir();
const char *getUserDir();
bool exists(std::string name);
- VirtList *enumerateFiles(std::string dir) RETURNS_NONNULL;
+ List *enumerateFiles(std::string dir) RETURNS_NONNULL;
bool isDirectory(std::string name);
bool isSymbolicLink(const std::string &restrict name);
- void freeList(VirtList *restrict const handle);
+ void freeList(List *restrict const handle);
File *openRead(std::string filename);
File *openWrite(std::string filename);
File *openAppend(std::string filename);