From 66a4db694b53a762c24cb381a3ec458b525e43c9 Mon Sep 17 00:00:00 2001 From: yellows8 Date: Mon, 23 Sep 2019 16:58:58 -0400 Subject: [PATCH] Added docs for FsStorageId. --- nx/include/switch/services/fs.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/nx/include/switch/services/fs.h b/nx/include/switch/services/fs.h index fd3ff8aa..bdc3c93e 100644 --- a/nx/include/switch/services/fs.h +++ b/nx/include/switch/services/fs.h @@ -168,14 +168,14 @@ typedef enum FsWriteOption_Flush = BIT(0), ///< Forces a flush after write. } FsWriteOption; -typedef enum -{ - FsStorageId_None = 0, - FsStorageId_Host = 1, - FsStorageId_GameCard = 2, - FsStorageId_NandSystem = 3, - FsStorageId_NandUser = 4, - FsStorageId_SdCard = 5, +/// StorageId +typedef enum { + FsStorageId_None = 0, ///< None + FsStorageId_Host = 1, ///< Host + FsStorageId_GameCard = 2, ///< GameCard + FsStorageId_NandSystem = 3, ///< NandSystem + FsStorageId_NandUser = 4, ///< NandUser + FsStorageId_SdCard = 5, ///< SdCard } FsStorageId; typedef enum