mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
Rename FsSrv.Creators to FsSrv.FsCreator
This commit is contained in:
parent
d8b8e3088e
commit
0ab26fdd69
37 changed files with 37 additions and 37 deletions
|
@ -1,7 +1,7 @@
|
|||
using System;
|
||||
using LibHac.Common;
|
||||
using LibHac.Fs;
|
||||
using LibHac.FsSrv.Creators;
|
||||
using LibHac.FsSrv.FsCreator;
|
||||
using LibHac.FsSrv.Impl;
|
||||
using LibHac.FsSrv.Sf;
|
||||
using LibHac.Sf;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
using System;
|
||||
using LibHac.Common;
|
||||
using LibHac.Fs;
|
||||
using LibHac.FsSrv.Creators;
|
||||
using LibHac.FsSrv.FsCreator;
|
||||
using LibHac.FsSrv.Impl;
|
||||
using LibHac.FsSrv.Sf;
|
||||
using LibHac.FsSystem;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
using LibHac.Common.Keys;
|
||||
using LibHac.FsSrv.Creators;
|
||||
using LibHac.FsSrv.FsCreator;
|
||||
using LibHac.FsSrv.Sf;
|
||||
using IFileSystem = LibHac.Fs.Fsa.IFileSystem;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
using LibHac.FsSrv.Creators;
|
||||
using LibHac.FsSrv.FsCreator;
|
||||
|
||||
namespace LibHac.FsSrv
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@ using LibHac.Common;
|
|||
using LibHac.Fs;
|
||||
using LibHac.Fs.Fsa;
|
||||
using LibHac.Fs.Shim;
|
||||
using LibHac.FsSrv.Creators;
|
||||
using LibHac.FsSrv.FsCreator;
|
||||
using LibHac.FsSrv.Impl;
|
||||
|
||||
namespace LibHac.FsSrv
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
using System;
|
||||
using LibHac.Fs.Impl;
|
||||
using LibHac.Fs.Shim;
|
||||
using LibHac.FsSrv.Creators;
|
||||
using LibHac.FsSrv.FsCreator;
|
||||
using LibHac.FsSrv.Impl;
|
||||
using LibHac.FsSrv.Sf;
|
||||
using LibHac.FsSrv.Storage;
|
||||
|
|
|
@ -4,7 +4,7 @@ using LibHac.Fs;
|
|||
using LibHac.Fs.Fsa;
|
||||
using LibHac.FsSrv.Impl;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides <see cref="IFileSystem"/> objects for the built-in storage (BIS) partitions.
|
|
@ -3,7 +3,7 @@ using LibHac.Common;
|
|||
using LibHac.Fs;
|
||||
using LibHac.Fs.Fsa;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
/// <summary>
|
||||
/// Configuration for <see cref="EmulatedBisFileSystemCreator"/> that specifies how each
|
|
@ -2,7 +2,7 @@
|
|||
using LibHac.Fs;
|
||||
using LibHac.Fs.Fsa;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public class EmulatedGameCardFsCreator : IGameCardFileSystemCreator
|
||||
{
|
|
@ -2,7 +2,7 @@
|
|||
using LibHac.Common;
|
||||
using LibHac.Fs;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public class EmulatedGameCardStorageCreator : IGameCardStorageCreator
|
||||
{
|
|
@ -3,7 +3,7 @@ using LibHac.Common;
|
|||
using LibHac.Fs;
|
||||
using LibHac.Fs.Fsa;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public class EmulatedSdCardFileSystemCreator : ISdCardProxyFileSystemCreator
|
||||
{
|
|
@ -4,7 +4,7 @@ using LibHac.Fs;
|
|||
using LibHac.Fs.Fsa;
|
||||
using LibHac.FsSystem;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public class EncryptedFileSystemCreator : IEncryptedFileSystemCreator
|
||||
{
|
|
@ -1,4 +1,4 @@
|
|||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public class FileSystemCreatorInterfaces
|
||||
{
|
|
@ -1,6 +1,6 @@
|
|||
using LibHac.Fs;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public interface IBuiltInStorageCreator
|
||||
{
|
|
@ -2,7 +2,7 @@
|
|||
using LibHac.Fs;
|
||||
using LibHac.Fs.Fsa;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public interface IBuiltInStorageFileSystemCreator
|
||||
{
|
|
@ -1,7 +1,7 @@
|
|||
using LibHac.Fs;
|
||||
using LibHac.Fs.Fsa;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public interface IEncryptedFileSystemCreator
|
||||
{
|
|
@ -2,7 +2,7 @@
|
|||
using LibHac.Fs;
|
||||
using LibHac.Fs.Fsa;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public interface IFatFileSystemCreator
|
||||
{
|
|
@ -1,7 +1,7 @@
|
|||
using LibHac.Fs;
|
||||
using LibHac.Fs.Fsa;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public interface IGameCardFileSystemCreator
|
||||
{
|
|
@ -1,6 +1,6 @@
|
|||
using LibHac.Fs;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public interface IGameCardStorageCreator
|
||||
{
|
|
@ -1,6 +1,6 @@
|
|||
using LibHac.Fs.Fsa;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public interface IHostFileSystemCreator
|
||||
{
|
|
@ -1,7 +1,7 @@
|
|||
using System;
|
||||
using LibHac.Fs;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public interface IMemoryStorageCreator
|
||||
{
|
|
@ -1,7 +1,7 @@
|
|||
using LibHac.Fs;
|
||||
using LibHac.Fs.Fsa;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public interface IPartitionFileSystemCreator
|
||||
{
|
|
@ -1,7 +1,7 @@
|
|||
using LibHac.Fs;
|
||||
using LibHac.Fs.Fsa;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public interface IRomFileSystemCreator
|
||||
{
|
|
@ -4,7 +4,7 @@ using LibHac.Fs;
|
|||
using LibHac.Fs.Fsa;
|
||||
using LibHac.FsSystem;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public interface ISaveDataFileSystemCreator
|
||||
{
|
|
@ -1,6 +1,6 @@
|
|||
using LibHac.Fs.Fsa;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public interface ISdCardProxyFileSystemCreator
|
||||
{
|
|
@ -1,6 +1,6 @@
|
|||
using LibHac.Fs;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public interface ISdStorageCreator
|
||||
{
|
|
@ -2,7 +2,7 @@
|
|||
using LibHac.Fs.Fsa;
|
||||
using LibHac.FsSystem.NcaUtils;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public interface IStorageOnNcaCreator
|
||||
{
|
|
@ -1,7 +1,7 @@
|
|||
using LibHac.Common;
|
||||
using LibHac.Fs.Fsa;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public interface ISubDirectoryFileSystemCreator
|
||||
{
|
|
@ -1,7 +1,7 @@
|
|||
using System;
|
||||
using LibHac.Fs.Fsa;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public interface ITargetManagerFileSystemCreator
|
||||
{
|
|
@ -4,7 +4,7 @@ using LibHac.Fs.Fsa;
|
|||
using LibHac.FsSystem;
|
||||
using LibHac.FsSystem.Detail;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public class PartitionFileSystemCreator : IPartitionFileSystemCreator
|
||||
{
|
|
@ -2,7 +2,7 @@
|
|||
using LibHac.Fs.Fsa;
|
||||
using LibHac.FsSystem.RomFs;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public class RomFileSystemCreator : IRomFileSystemCreator
|
||||
{
|
|
@ -6,7 +6,7 @@ using LibHac.Fs.Fsa;
|
|||
using LibHac.FsSystem;
|
||||
using LibHac.FsSystem.Save;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public class SaveDataFileSystemCreator : ISaveDataFileSystemCreator
|
||||
{
|
|
@ -7,7 +7,7 @@ using LibHac.FsSystem;
|
|||
using LibHac.FsSystem.Detail;
|
||||
using LibHac.FsSystem.NcaUtils;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public class StorageOnNcaCreator : IStorageOnNcaCreator
|
||||
{
|
|
@ -2,7 +2,7 @@
|
|||
using LibHac.Fs.Fsa;
|
||||
using LibHac.FsSystem;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public class SubDirectoryFileSystemCreator : ISubDirectoryFileSystemCreator
|
||||
{
|
|
@ -1,7 +1,7 @@
|
|||
using System;
|
||||
using LibHac.Fs.Fsa;
|
||||
|
||||
namespace LibHac.FsSrv.Creators
|
||||
namespace LibHac.FsSrv.FsCreator
|
||||
{
|
||||
public class TargetManagerFileSystemCreator : ITargetManagerFileSystemCreator
|
||||
{
|
|
@ -4,7 +4,7 @@ using System.Runtime.CompilerServices;
|
|||
using LibHac.Common;
|
||||
using LibHac.Fs;
|
||||
using LibHac.Fs.Fsa;
|
||||
using LibHac.FsSrv.Creators;
|
||||
using LibHac.FsSrv.FsCreator;
|
||||
using LibHac.FsSrv.Impl;
|
||||
using LibHac.FsSystem;
|
||||
using LibHac.FsSystem.NcaUtils;
|
||||
|
|
|
@ -3,7 +3,7 @@ using System.Runtime.CompilerServices;
|
|||
using LibHac.Common;
|
||||
using LibHac.Fs;
|
||||
using LibHac.Fs.Fsa;
|
||||
using LibHac.FsSrv.Creators;
|
||||
using LibHac.FsSrv.FsCreator;
|
||||
using LibHac.FsSrv.Impl;
|
||||
using LibHac.FsSystem;
|
||||
using LibHac.FsSystem.Save;
|
||||
|
|
Loading…
Reference in a new issue