Diff fssrv::storage with FS 16

This commit is contained in:
Alex Barney 2023-09-17 19:28:24 -07:00
parent b79619cb48
commit 2b69ec6cf9
3 changed files with 4 additions and 4 deletions

View file

@ -36,7 +36,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 nnSdk 14.3.0 (FS 14.1.0)</remarks> /// <remarks>Based on nnSdk 16.2.0 (FS 16.0.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;

View file

@ -15,7 +15,7 @@ namespace LibHac.FsSrv.Storage;
/// <summary> /// <summary>
/// Contains global MMC-storage-related functions. /// Contains global MMC-storage-related functions.
/// </summary> /// </summary>
/// <remarks>Based on nnSdk 14.3.0 (FS 14.1.0)</remarks> /// <remarks>Based on nnSdk 16.2.0 (FS 16.0.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,
@ -28,7 +28,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 nnSdk 14.3.0 (FS 14.1.0)</remarks> /// <remarks>Based on nnSdk 16.2.0 (FS 16.0.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;

View file

@ -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 nnSdk 14.3.0 (FS 14.1.0)</remarks> /// <remarks>Based on nnSdk 16.2.0 (FS 16.0.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;