From e359010e753e78429fa28ada912e4bc1ef219330 Mon Sep 17 00:00:00 2001 From: yellows8 Date: Sun, 5 May 2019 17:17:08 -0400 Subject: [PATCH] Improved fs_dev docs. --- nx/include/switch/runtime/devices/fs_dev.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nx/include/switch/runtime/devices/fs_dev.h b/nx/include/switch/runtime/devices/fs_dev.h index 689b8113..0c2af7bd 100644 --- a/nx/include/switch/runtime/devices/fs_dev.h +++ b/nx/include/switch/runtime/devices/fs_dev.h @@ -42,13 +42,13 @@ FsFileSystem* fsdevGetDeviceFileSystem(const char *name); /// Returns the FsFileSystem for the default device (SD card), if mounted. Used internally by romfs_dev. FsFileSystem* fsdevGetDefaultFileSystem(void); -/// Writes the FS-path to outpath (which has buffer size FS_MAX_PATH), for the input device path. The FsFileSystem is also written to device when not NULL. +/// Writes the FS-path to outpath (which has buffer size FS_MAX_PATH), for the input path (as used in stdio). The FsFileSystem is also written to device when not NULL. int fsdevTranslatePath(const char *path, FsFileSystem** device, char *outpath); -/// This calls fsFsSetArchiveBit on the filesystem specified by the input absolute path. +/// This calls fsFsSetArchiveBit on the filesystem specified by the input path (as used in stdio). Result fsdevSetArchiveBit(const char *path); -/// Recursively deletes the directory specified by the input absolute path. +/// Recursively deletes the directory specified by the input path (as used in stdio). Result fsdevDeleteDirectoryRecursively(const char *path); /// Unmounts all devices and cleans up any resources used by the FS driver.