mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
Mark some classes as being updated for 14.1.0
This commit is contained in:
parent
28a4deb93c
commit
b5ae21207b
6 changed files with 8 additions and 8 deletions
|
@ -11,7 +11,7 @@ namespace LibHac.FsSrv;
|
|||
/// <summary>
|
||||
/// Handles debug configuration calls for <see cref="FileSystemProxyImpl"/>.
|
||||
/// </summary>
|
||||
/// <remarks>Based on FS 13.1.0 (nnSdk 13.4.0)</remarks>
|
||||
/// <remarks>Based on FS 14.1.0 (nnSdk 14.3.0)</remarks>
|
||||
public struct DebugConfigurationService
|
||||
{
|
||||
private DebugConfigurationServiceImpl _serviceImpl;
|
||||
|
@ -63,7 +63,7 @@ public struct DebugConfigurationService
|
|||
/// <summary>
|
||||
/// Manages a key-value list of debug settings.
|
||||
/// </summary>
|
||||
/// <remarks>Based on FS 13.1.0 (nnSdk 13.4.0)</remarks>
|
||||
/// <remarks>Based on FS 14.1.0 (nnSdk 14.3.0)</remarks>
|
||||
public class DebugConfigurationServiceImpl : IDisposable
|
||||
{
|
||||
private Configuration _config;
|
||||
|
|
|
@ -35,7 +35,7 @@ internal struct GameCardServiceGlobals : IDisposable
|
|||
/// <summary>
|
||||
/// Contains functions for interacting with the game card storage device.
|
||||
/// </summary>
|
||||
/// <remarks>Based on FS 13.1.0 (nnSdk 13.4.0)</remarks>
|
||||
/// <remarks>Based on FS 14.1.0 (nnSdk 14.3.0)</remarks>
|
||||
internal static class GameCardService
|
||||
{
|
||||
private static ulong MakeAttributeId(OpenGameCardAttribute attribute) => (ulong)attribute;
|
||||
|
|
|
@ -14,7 +14,7 @@ namespace LibHac.FsSrv.Storage;
|
|||
/// <summary>
|
||||
/// Contains global MMC-storage-related functions.
|
||||
/// </summary>
|
||||
/// <remarks>Based on FS 13.1.0 (nnSdk 13.4.0)</remarks>
|
||||
/// <remarks>Based on FS 14.1.0 (nnSdk 14.3.0)</remarks>
|
||||
public static class MmcServiceGlobalMethods
|
||||
{
|
||||
public static Result GetAndClearPatrolReadAllocateBufferCount(this FileSystemServer fsSrv, out long successCount,
|
||||
|
@ -27,7 +27,7 @@ public static class MmcServiceGlobalMethods
|
|||
/// <summary>
|
||||
/// Contains functions for interacting with the MMC storage device.
|
||||
/// </summary>
|
||||
/// <remarks>Based on FS 13.1.0 (nnSdk 13.4.0)</remarks>
|
||||
/// <remarks>Based on FS 14.1.0 (nnSdk 14.3.0)</remarks>
|
||||
internal static class MmcService
|
||||
{
|
||||
private static int MakeOperationId(MmcManagerOperationIdValue operation) => (int)operation;
|
||||
|
|
|
@ -17,7 +17,7 @@ namespace LibHac.FsSrv.Storage;
|
|||
/// <summary>
|
||||
/// Contains functions for interacting with the SD card storage device.
|
||||
/// </summary>
|
||||
/// <remarks>Based on FS 13.1.0 (nnSdk 13.4.0)</remarks>
|
||||
/// <remarks>Based on FS 14.1.0 (nnSdk 14.3.0)</remarks>
|
||||
internal static class SdCardService
|
||||
{
|
||||
private static int MakeOperationId(SdCardManagerOperationIdValue operation) => (int)operation;
|
||||
|
|
|
@ -14,7 +14,7 @@ namespace LibHac.FsSystem;
|
|||
/// <summary>
|
||||
/// Allows searching and iterating the entries in a bucket tree data structure.
|
||||
/// </summary>
|
||||
/// <remarks>Based on FS 13.1.0 (nnSdk 13.4.0)</remarks>
|
||||
/// <remarks>Based on FS 14.1.0 (nnSdk 14.3.0)</remarks>
|
||||
public partial class BucketTree : IDisposable
|
||||
{
|
||||
private const uint ExpectedMagic = 0x52544B42; // BKTR
|
||||
|
|
|
@ -13,7 +13,7 @@ namespace LibHac.FsSystem;
|
|||
/// </summary>
|
||||
/// <remarks><para>The <see cref="IndirectStorage"/>'s <see cref="BucketTree"/> contains <see cref="Entry"/>
|
||||
/// values that describe how the created storage is to be built from the base storages.</para>
|
||||
/// <para>Based on FS 13.1.0 (nnSdk 13.4.0)</para></remarks>
|
||||
/// <para>Based on FS 14.1.0 (nnSdk 14.3.0)</para></remarks>
|
||||
public class IndirectStorage : IStorage
|
||||
{
|
||||
public static readonly int StorageCount = 2;
|
||||
|
|
Loading…
Reference in a new issue