Mark some classes as being updated for 14.1.0

This commit is contained in:
Alex Barney 2022-04-18 19:41:10 -07:00
parent 28a4deb93c
commit b5ae21207b
6 changed files with 8 additions and 8 deletions

View file

@ -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;

View file

@ -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;

View file

@ -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;

View file

@ -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;

View file

@ -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

View file

@ -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;