|
|
@ -310,8 +310,8 @@ private:
|
|
|
|
class IFileSystem final : public ServiceFramework<IFileSystem> {
|
|
|
|
class IFileSystem final : public ServiceFramework<IFileSystem> {
|
|
|
|
public:
|
|
|
|
public:
|
|
|
|
explicit IFileSystem(Core::System& system_, FileSys::VirtualDir backend_, SizeGetter size_)
|
|
|
|
explicit IFileSystem(Core::System& system_, FileSys::VirtualDir backend_, SizeGetter size_)
|
|
|
|
: ServiceFramework{system_, "IFileSystem"}, backend{std::move(backend_)},
|
|
|
|
: ServiceFramework{system_, "IFileSystem"}, backend{std::move(backend_)}, size{std::move(
|
|
|
|
size{std::move(size_)} {
|
|
|
|
size_)} {
|
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
{0, &IFileSystem::CreateFile, "CreateFile"},
|
|
|
|
{0, &IFileSystem::CreateFile, "CreateFile"},
|
|
|
|
{1, &IFileSystem::DeleteFile, "DeleteFile"},
|
|
|
|
{1, &IFileSystem::DeleteFile, "DeleteFile"},
|
|
|
|