mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-18 06:13:55 -07:00
archive: pretty much done except for trace and archive_builder IO: io_manager still needs to be fixed/revised (especially WRT buffer and alignment management) posix: done vfs: need to complete vfs_mount and tie it in to vfs.cpp dir_util: needs further revisions (VFS interface changed since then) This was SVN commit r5475.
16 lines
435 B
C++
16 lines
435 B
C++
#include "precompiled.h"
|
|
#include "filesystem.h"
|
|
|
|
#include "path.h"
|
|
|
|
ERROR_ASSOCIATE(ERR::FILE_ACCESS, "Insufficient access rights to open file", EACCES);
|
|
ERROR_ASSOCIATE(ERR::DIR_NOT_FOUND, "Directory not found", ENOENT);
|
|
ERROR_ASSOCIATE(ERR::IO, "Error during IO", EIO);
|
|
ERROR_ASSOCIATE(ERR::IO_EOF, "Reading beyond end of file", -1);
|
|
|
|
|
|
// rationale for out-of-line dtor: see [Lakos]
|
|
|
|
IFilesystem::~IFilesystem()
|
|
{
|
|
}
|