Rename FS namespaces

This commit is contained in:
Alex Barney 2019-09-21 12:29:10 -05:00
parent a7befc5612
commit 0e01aa3984
186 changed files with 221 additions and 221 deletions

View File

@ -1,6 +1,6 @@
using System.IO; using System.IO;
using System.Linq; using System.Linq;
using LibHac.Fs.NcaUtils; using LibHac.FsSystem.NcaUtils;
using LibHac.Ncm; using LibHac.Ncm;
using ContentType = LibHac.Ncm.ContentType; using ContentType = LibHac.Ncm.ContentType;

View File

@ -35,7 +35,7 @@ namespace LibHac.Common
public override bool Equals(object obj) public override bool Equals(object obj)
{ {
return obj is Fs.UserId other && Equals(other); return obj is FsSystem.UserId other && Equals(other);
} }
public override int GetHashCode() public override int GetHashCode()

View File

@ -2,7 +2,7 @@
using System.IO; using System.IO;
using System.Numerics; using System.Numerics;
using System.Security.Cryptography; using System.Security.Cryptography;
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac namespace LibHac
{ {

View File

@ -1,8 +1,8 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsClient.Accessors namespace LibHac.Fs.Accessors
{ {
public class DirectoryAccessor : IDisposable public class DirectoryAccessor : IDisposable
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsClient.Accessors namespace LibHac.Fs.Accessors
{ {
public class FileAccessor : IFile public class FileAccessor : IFile
{ {

View File

@ -1,9 +1,9 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsClient.Accessors namespace LibHac.Fs.Accessors
{ {
public class FileSystemAccessor public class FileSystemAccessor
{ {

View File

@ -1,7 +1,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsClient.Accessors namespace LibHac.Fs.Accessors
{ {
public class MountTable public class MountTable
{ {

View File

@ -1,9 +1,9 @@
using System; using System;
using LibHac.Common; using LibHac.Common;
using LibHac.Fs; using LibHac.FsSystem;
using LibHac.FsService; using LibHac.FsService;
namespace LibHac.FsClient namespace LibHac.Fs
{ {
public static class ContentStorage public static class ContentStorage
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using LibHac.FsClient.Accessors; using LibHac.Fs.Accessors;
namespace LibHac.FsClient namespace LibHac.Fs
{ {
public struct DirectoryHandle : IDisposable public struct DirectoryHandle : IDisposable
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using LibHac.FsClient.Accessors; using LibHac.Fs.Accessors;
namespace LibHac.FsClient namespace LibHac.Fs
{ {
public struct FileHandle : IDisposable public struct FileHandle : IDisposable
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsClient namespace LibHac.Fs
{ {
public partial class FileSystemClient public partial class FileSystemClient
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsClient namespace LibHac.Fs
{ {
public partial class FileSystemClient public partial class FileSystemClient
{ {

View File

@ -1,6 +1,6 @@
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsClient namespace LibHac.Fs
{ {
public partial class FileSystemClient public partial class FileSystemClient
{ {

View File

@ -1,8 +1,8 @@
using LibHac.Common; using LibHac.Common;
using LibHac.Fs; using LibHac.FsSystem;
using LibHac.FsService; using LibHac.FsService;
namespace LibHac.FsClient namespace LibHac.Fs
{ {
public partial class FileSystemClient public partial class FileSystemClient
{ {

View File

@ -1,8 +1,8 @@
using LibHac.Common; using LibHac.Common;
using LibHac.Fs; using LibHac.FsSystem;
using LibHac.FsService; using LibHac.FsService;
namespace LibHac.FsClient namespace LibHac.Fs
{ {
public partial class FileSystemClient public partial class FileSystemClient
{ {

View File

@ -1,10 +1,10 @@
using System; using System;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
using LibHac.Common; using LibHac.Common;
using LibHac.Fs; using LibHac.Fs.Accessors;
using LibHac.FsClient.Accessors; using LibHac.FsSystem;
namespace LibHac.FsClient namespace LibHac.Fs
{ {
// Todo: Access log for FindFileSystem // Todo: Access log for FindFileSystem
public class FileSystemManager public class FileSystemManager

View File

@ -2,10 +2,10 @@
using System.Buffers; using System.Buffers;
using System.Collections.Generic; using System.Collections.Generic;
using LibHac.Common; using LibHac.Common;
using LibHac.Fs; using LibHac.Fs.Accessors;
using LibHac.FsClient.Accessors; using LibHac.FsSystem;
namespace LibHac.FsClient namespace LibHac.Fs
{ {
public static class FileSystemManagerUtils public static class FileSystemManagerUtils
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
namespace LibHac.FsClient namespace LibHac.Fs
{ {
public interface IAccessLog public interface IAccessLog
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace LibHac.FsClient namespace LibHac.Fs
{ {
public interface ICommonMountNameGenerator public interface ICommonMountNameGenerator
{ {

View File

@ -1,7 +1,7 @@
using LibHac.Common; using LibHac.Common;
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsClient namespace LibHac.Fs
{ {
internal static class MountHelpers internal static class MountHelpers
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using LibHac.FsService; using LibHac.FsService;
namespace LibHac.FsClient namespace LibHac.Fs
{ {
/// <summary> /// <summary>
/// The default access logger that will output to the SD card via <see cref="FileSystemProxy"/>. /// The default access logger that will output to the SD card via <see cref="FileSystemProxy"/>.

View File

@ -1,5 +1,5 @@
using System.Diagnostics; using System.Diagnostics;
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsService.Creators namespace LibHac.FsService.Creators
{ {

View File

@ -1,5 +1,5 @@
using System.Diagnostics; using System.Diagnostics;
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsService.Creators namespace LibHac.FsService.Creators
{ {

View File

@ -1,5 +1,5 @@
using System; using System;
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsService.Creators namespace LibHac.FsService.Creators
{ {

View File

@ -1,5 +1,5 @@
using System; using System;
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsService.Creators namespace LibHac.FsService.Creators
{ {

View File

@ -1,4 +1,4 @@
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsService.Creators namespace LibHac.FsService.Creators
{ {

View File

@ -1,4 +1,4 @@
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsService.Creators namespace LibHac.FsService.Creators
{ {

View File

@ -1,4 +1,4 @@
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsService.Creators namespace LibHac.FsService.Creators
{ {

View File

@ -1,5 +1,5 @@
using System; using System;
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsService.Creators namespace LibHac.FsService.Creators
{ {

View File

@ -1,4 +1,4 @@
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsService.Creators namespace LibHac.FsService.Creators
{ {

View File

@ -1,4 +1,4 @@
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsService.Creators namespace LibHac.FsService.Creators
{ {

View File

@ -1,4 +1,4 @@
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsService.Creators namespace LibHac.FsService.Creators
{ {

View File

@ -1,4 +1,4 @@
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsService.Creators namespace LibHac.FsService.Creators
{ {

View File

@ -1,5 +1,5 @@
using System; using System;
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsService.Creators namespace LibHac.FsService.Creators
{ {

View File

@ -1,4 +1,4 @@
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsService.Creators namespace LibHac.FsService.Creators
{ {

View File

@ -1,4 +1,4 @@
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsService.Creators namespace LibHac.FsService.Creators
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using LibHac.Common; using LibHac.Common;
using LibHac.Fs; using LibHac.FsSystem;
using LibHac.Fs.Save; using LibHac.FsSystem.Save;
namespace LibHac.FsService.Creators namespace LibHac.FsService.Creators
{ {

View File

@ -1,4 +1,4 @@
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsService.Creators namespace LibHac.FsService.Creators
{ {

View File

@ -1,4 +1,4 @@
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsService.Creators namespace LibHac.FsService.Creators
{ {

View File

@ -1,5 +1,5 @@
using LibHac.Fs; using LibHac.FsSystem;
using LibHac.Fs.NcaUtils; using LibHac.FsSystem.NcaUtils;
namespace LibHac.FsService.Creators namespace LibHac.FsService.Creators
{ {

View File

@ -1,4 +1,4 @@
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsService.Creators namespace LibHac.FsService.Creators
{ {

View File

@ -1,4 +1,4 @@
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsService.Creators namespace LibHac.FsService.Creators
{ {

View File

@ -1,4 +1,4 @@
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsService.Creators namespace LibHac.FsService.Creators
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using LibHac.Common; using LibHac.Common;
using LibHac.Fs; using LibHac.Fs;
using LibHac.FsClient; using LibHac.FsSystem;
namespace LibHac.FsService namespace LibHac.FsService
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
using LibHac.Fs; using LibHac.FsSystem;
using LibHac.Fs.Save; using LibHac.FsSystem.Save;
using LibHac.FsService.Creators; using LibHac.FsService.Creators;
namespace LibHac.FsService namespace LibHac.FsService

View File

@ -1,4 +1,4 @@
using LibHac.FsClient; using LibHac.Fs;
using LibHac.FsService.Creators; using LibHac.FsService.Creators;
namespace LibHac.FsService namespace LibHac.FsService

View File

@ -1,6 +1,6 @@
using System; using System;
using LibHac.Common; using LibHac.Common;
using LibHac.Fs; using LibHac.FsSystem;
using LibHac.Ncm; using LibHac.Ncm;
using LibHac.Spl; using LibHac.Spl;

View File

@ -1,5 +1,5 @@
using System; using System;
using LibHac.Fs; using LibHac.FsSystem;
namespace LibHac.FsService namespace LibHac.FsService
{ {

View File

@ -2,7 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class Aes128CtrExStorage : Aes128CtrStorage public class Aes128CtrExStorage : Aes128CtrStorage
{ {

View File

@ -2,7 +2,7 @@
using System.Buffers; using System.Buffers;
using System.Buffers.Binary; using System.Buffers.Binary;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class Aes128CtrStorage : SectorStorage public class Aes128CtrStorage : SectorStorage
{ {

View File

@ -4,7 +4,7 @@ using System.Buffers.Binary;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Security.Cryptography; using System.Security.Cryptography;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class Aes128CtrTransform public class Aes128CtrTransform
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class Aes128XtsStorage : SectorStorage public class Aes128XtsStorage : SectorStorage
{ {

View File

@ -29,7 +29,7 @@ using System.Buffers;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Security.Cryptography; using System.Security.Cryptography;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class Aes128XtsTransform public class Aes128XtsTransform
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using LibHac.Common; using LibHac.Common;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class AesXtsDirectory : IDirectory public class AesXtsDirectory : IDirectory
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class AesXtsFile : FileBase public class AesXtsFile : FileBase
{ {

View File

@ -3,7 +3,7 @@ using System.Runtime.InteropServices;
using System.Security.Cryptography; using System.Security.Cryptography;
using System.Text; using System.Text;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class AesXtsFileHeader public class AesXtsFileHeader
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using System.Diagnostics; using System.Diagnostics;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class AesXtsFileSystem : IFileSystem public class AesXtsFileSystem : IFileSystem
{ {

View File

@ -2,7 +2,7 @@
using System.IO; using System.IO;
using System.Linq; using System.Linq;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class BucketTree<T> where T : BucketTreeEntry<T>, new() public class BucketTree<T> where T : BucketTreeEntry<T>, new()
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class CachedStorage : StorageBase public class CachedStorage : StorageBase
{ {

View File

@ -5,7 +5,7 @@ using LibHac.Common;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
#endif #endif
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class ConcatenationDirectory : IDirectory public class ConcatenationDirectory : IDirectory
{ {

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.Diagnostics; using System.Diagnostics;
using System.Linq; using System.Linq;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class ConcatenationFile : FileBase public class ConcatenationFile : FileBase
{ {

View File

@ -5,7 +5,7 @@ using System.Collections.Generic;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
#endif #endif
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
/// <summary> /// <summary>
/// An <see cref="IFileSystem"/> that stores large files as smaller, separate sub-files. /// An <see cref="IFileSystem"/> that stores large files as smaller, separate sub-files.

View File

@ -1,7 +1,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class ConcatenationStorage : StorageBase public class ConcatenationStorage : StorageBase
{ {

View File

@ -2,7 +2,7 @@
using System.IO; using System.IO;
using System.Linq; using System.Linq;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class ConcatenationStorageBuilder public class ConcatenationStorageBuilder
{ {

View File

@ -2,7 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class Delta public class Delta
{ {

View File

@ -2,7 +2,7 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using LibHac.Common; using LibHac.Common;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class DirectoryEntryEx public class DirectoryEntryEx
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class DirectorySaveDataFile : FileBase public class DirectorySaveDataFile : FileBase
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class DirectorySaveDataFileSystem : IFileSystem public class DirectorySaveDataFileSystem : IFileSystem
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using LibHac.Common; using LibHac.Common;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public static class DirectoryUtils public static class DirectoryUtils
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public abstract class FileBase : IFile public abstract class FileBase : IFile
{ {

View File

@ -3,7 +3,7 @@ using System.Diagnostics;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Text; using System.Text;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class FileReader public class FileReader
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class FileStorage : StorageBase public class FileStorage : StorageBase
{ {

View File

@ -4,7 +4,7 @@ using System.Collections.Generic;
using System.IO; using System.IO;
using LibHac.Common; using LibHac.Common;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public static class FileSystemExtensions public static class FileSystemExtensions
{ {

View File

@ -1,4 +1,4 @@
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public struct FileTimeStampRaw public struct FileTimeStampRaw
{ {

View File

@ -1,4 +1,4 @@
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public enum BisPartitionId public enum BisPartitionId
{ {

View File

@ -3,7 +3,7 @@ using System.Diagnostics;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using LibHac.Common; using LibHac.Common;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
[DebuggerDisplay("{ToString()}")] [DebuggerDisplay("{ToString()}")]
[StructLayout(LayoutKind.Explicit, Size = MaxLength + 1)] [StructLayout(LayoutKind.Explicit, Size = MaxLength + 1)]

View File

@ -4,7 +4,7 @@ using System.IO;
using System.Security.Cryptography; using System.Security.Cryptography;
using System.Text; using System.Text;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class HierarchicalIntegrityVerificationStorage : StorageBase public class HierarchicalIntegrityVerificationStorage : StorageBase
{ {

View File

@ -1,4 +1,4 @@
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public interface IAttributeFileSystem : IFileSystem public interface IAttributeFileSystem : IFileSystem
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
/// <summary> /// <summary>
/// Provides an interface for enumerating the child entries of a directory. /// Provides an interface for enumerating the child entries of a directory.

View File

@ -1,6 +1,6 @@
using System; using System;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
/// <summary> /// <summary>
/// Provides an interface for reading and writing a sequence of bytes. /// Provides an interface for reading and writing a sequence of bytes.

View File

@ -1,6 +1,6 @@
using System; using System;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
/// <summary> /// <summary>
/// Provides an interface for accessing a file system. <c>/</c> is used as the path delimiter. /// Provides an interface for accessing a file system. <c>/</c> is used as the path delimiter.

View File

@ -1,6 +1,6 @@
using System; using System;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
/// <summary> /// <summary>
/// Provides an interface for reading and writing a sequence of bytes. /// Provides an interface for reading and writing a sequence of bytes.

View File

@ -2,7 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class IndirectStorage : StorageBase public class IndirectStorage : StorageBase
{ {

View File

@ -2,9 +2,9 @@
using System.Buffers; using System.Buffers;
using System.IO; using System.IO;
using System.Security.Cryptography; using System.Security.Cryptography;
using LibHac.Fs.Save; using LibHac.FsSystem.Save;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class IntegrityVerificationStorage : SectorStorage public class IntegrityVerificationStorage : SectorStorage
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class LayeredFileSystem : IFileSystem public class LayeredFileSystem : IFileSystem
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class LayeredFileSystemDirectory : IDirectory public class LayeredFileSystemDirectory : IDirectory
{ {

View File

@ -4,7 +4,7 @@ using System.IO;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
using LibHac.Common; using LibHac.Common;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class LocalDirectory : IDirectory public class LocalDirectory : IDirectory
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using System.IO; using System.IO;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class LocalFile : FileBase public class LocalFile : FileBase
{ {

View File

@ -2,7 +2,7 @@
using System.IO; using System.IO;
using System.Security; using System.Security;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class LocalFileSystem : IAttributeFileSystem public class LocalFileSystem : IAttributeFileSystem
{ {

View File

@ -1,7 +1,7 @@
using System; using System;
using System.IO; using System.IO;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class LocalStorage : StorageBase public class LocalStorage : StorageBase
{ {

View File

@ -1,6 +1,6 @@
using System; using System;
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
public class MemoryStorage : StorageBase public class MemoryStorage : StorageBase
{ {

View File

@ -1,4 +1,4 @@
namespace LibHac.Fs namespace LibHac.FsSystem
{ {
internal static class Messages internal static class Messages
{ {

View File

@ -2,9 +2,9 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Diagnostics; using System.Diagnostics;
using System.IO; using System.IO;
using LibHac.Fs.RomFs; using LibHac.FsSystem.RomFs;
namespace LibHac.Fs.NcaUtils namespace LibHac.FsSystem.NcaUtils
{ {
public class Nca public class Nca
{ {

View File

@ -2,7 +2,7 @@
using System.Buffers.Binary; using System.Buffers.Binary;
using System.Diagnostics; using System.Diagnostics;
namespace LibHac.Fs.NcaUtils namespace LibHac.FsSystem.NcaUtils
{ {
public static class NcaExtensions public static class NcaExtensions
{ {

View File

@ -4,7 +4,7 @@ using System.Runtime.InteropServices;
// ReSharper disable ImpureMethodCallOnReadonlyValueField // ReSharper disable ImpureMethodCallOnReadonlyValueField
namespace LibHac.Fs.NcaUtils namespace LibHac.FsSystem.NcaUtils
{ {
public struct NcaFsHeader public struct NcaFsHeader
{ {

View File

@ -2,7 +2,7 @@
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace LibHac.Fs.NcaUtils namespace LibHac.FsSystem.NcaUtils
{ {
public struct NcaFsIntegrityInfoIvfc public struct NcaFsIntegrityInfoIvfc
{ {

View File

@ -2,7 +2,7 @@
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace LibHac.Fs.NcaUtils namespace LibHac.FsSystem.NcaUtils
{ {
public struct NcaFsIntegrityInfoSha256 public struct NcaFsIntegrityInfoSha256
{ {

View File

@ -2,7 +2,7 @@
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace LibHac.Fs.NcaUtils namespace LibHac.FsSystem.NcaUtils
{ {
public struct NcaFsPatchInfo public struct NcaFsPatchInfo
{ {

View File

@ -3,7 +3,7 @@ using System.IO;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace LibHac.Fs.NcaUtils namespace LibHac.FsSystem.NcaUtils
{ {
public struct NcaHeader public struct NcaHeader
{ {

View File

@ -1,4 +1,4 @@
namespace LibHac.Fs.NcaUtils namespace LibHac.FsSystem.NcaUtils
{ {
internal enum NcaKeyType internal enum NcaKeyType
{ {

Some files were not shown because too many files have changed in this diff Show More