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>
|
/// <summary>
|
||||||
/// Handles debug configuration calls for <see cref="FileSystemProxyImpl"/>.
|
/// Handles debug configuration calls for <see cref="FileSystemProxyImpl"/>.
|
||||||
/// </summary>
|
/// </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
|
public struct DebugConfigurationService
|
||||||
{
|
{
|
||||||
private DebugConfigurationServiceImpl _serviceImpl;
|
private DebugConfigurationServiceImpl _serviceImpl;
|
||||||
|
@ -63,7 +63,7 @@ public struct DebugConfigurationService
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Manages a key-value list of debug settings.
|
/// Manages a key-value list of debug settings.
|
||||||
/// </summary>
|
/// </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
|
public class DebugConfigurationServiceImpl : IDisposable
|
||||||
{
|
{
|
||||||
private Configuration _config;
|
private Configuration _config;
|
||||||
|
|
|
@ -35,7 +35,7 @@ internal struct GameCardServiceGlobals : IDisposable
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Contains functions for interacting with the game card storage device.
|
/// Contains functions for interacting with the game card storage device.
|
||||||
/// </summary>
|
/// </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
|
internal static class GameCardService
|
||||||
{
|
{
|
||||||
private static ulong MakeAttributeId(OpenGameCardAttribute attribute) => (ulong)attribute;
|
private static ulong MakeAttributeId(OpenGameCardAttribute attribute) => (ulong)attribute;
|
||||||
|
|
|
@ -14,7 +14,7 @@ namespace LibHac.FsSrv.Storage;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Contains global MMC-storage-related functions.
|
/// Contains global MMC-storage-related functions.
|
||||||
/// </summary>
|
/// </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 class MmcServiceGlobalMethods
|
||||||
{
|
{
|
||||||
public static Result GetAndClearPatrolReadAllocateBufferCount(this FileSystemServer fsSrv, out long successCount,
|
public static Result GetAndClearPatrolReadAllocateBufferCount(this FileSystemServer fsSrv, out long successCount,
|
||||||
|
@ -27,7 +27,7 @@ public static class MmcServiceGlobalMethods
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Contains functions for interacting with the MMC storage device.
|
/// Contains functions for interacting with the MMC storage device.
|
||||||
/// </summary>
|
/// </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
|
internal static class MmcService
|
||||||
{
|
{
|
||||||
private static int MakeOperationId(MmcManagerOperationIdValue operation) => (int)operation;
|
private static int MakeOperationId(MmcManagerOperationIdValue operation) => (int)operation;
|
||||||
|
|
|
@ -17,7 +17,7 @@ namespace LibHac.FsSrv.Storage;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Contains functions for interacting with the SD card storage device.
|
/// Contains functions for interacting with the SD card storage device.
|
||||||
/// </summary>
|
/// </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
|
internal static class SdCardService
|
||||||
{
|
{
|
||||||
private static int MakeOperationId(SdCardManagerOperationIdValue operation) => (int)operation;
|
private static int MakeOperationId(SdCardManagerOperationIdValue operation) => (int)operation;
|
||||||
|
|
|
@ -14,7 +14,7 @@ namespace LibHac.FsSystem;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Allows searching and iterating the entries in a bucket tree data structure.
|
/// Allows searching and iterating the entries in a bucket tree data structure.
|
||||||
/// </summary>
|
/// </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
|
public partial class BucketTree : IDisposable
|
||||||
{
|
{
|
||||||
private const uint ExpectedMagic = 0x52544B42; // BKTR
|
private const uint ExpectedMagic = 0x52544B42; // BKTR
|
||||||
|
|
|
@ -13,7 +13,7 @@ namespace LibHac.FsSystem;
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks><para>The <see cref="IndirectStorage"/>'s <see cref="BucketTree"/> contains <see cref="Entry"/>
|
/// <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>
|
/// 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 class IndirectStorage : IStorage
|
||||||
{
|
{
|
||||||
public static readonly int StorageCount = 2;
|
public static readonly int StorageCount = 2;
|
||||||
|
|
Loading…
Reference in a new issue