mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 20:42:44 +02:00
50 lines
2.0 KiB
C
50 lines
2.0 KiB
C
/**
|
|
* @file fs_dev.h
|
|
* @brief FS driver, using devoptab.
|
|
* @author yellows8
|
|
* @author mtheall
|
|
* @copyright libnx Authors
|
|
*/
|
|
#pragma once
|
|
|
|
#include <sys/types.h>
|
|
#include "../../services/fs.h"
|
|
|
|
#define FSDEV_DIRITER_MAGIC 0x66736476 ///< "fsdv"
|
|
|
|
/// Open directory struct
|
|
typedef struct
|
|
{
|
|
u32 magic; ///< "fsdv"
|
|
FsDir fd; ///< File descriptor
|
|
ssize_t index; ///< Current entry index
|
|
size_t size; ///< Current batch size
|
|
FsDirectoryEntry entry_data[32]; ///< Temporary storage for reading entries
|
|
} fsdev_dir_t;
|
|
|
|
/// Initializes and mounts the sdmc device if accessible. Also initializes current working directory to point to the folder containing the path to the executable (argv[0]), if it is provided by the environment.
|
|
Result fsdevMountSdmc(void);
|
|
|
|
/// Mounts the input fs with the specified device name. fsdev will handle closing the fs when required, including when fsdevMountDevice() fails.
|
|
/// Returns -1 when any errors occur.
|
|
int fsdevMountDevice(const char *name, FsFileSystem fs);
|
|
|
|
/// Unmounts the specified device.
|
|
int fsdevUnmountDevice(const char *name);
|
|
|
|
/// Uses fsFsCommit() with the specified device. This must be used after any savedata-write operations(not just file-write). This should be used after each file-close where file-writing was done.
|
|
/// This is not used automatically at device unmount.
|
|
Result fsdevCommitDevice(const char *name);
|
|
|
|
/// Returns the FsFileSystem for the specified device. Returns NULL when the specified device isn't found.
|
|
FsFileSystem* fsdevGetDeviceFileSystem(const char *name);
|
|
|
|
/// Returns the FsFileSystem for the default device (SD card), if mounted. Used internally by romfs_dev.
|
|
FsFileSystem* fsdevGetDefaultFileSystem(void);
|
|
|
|
/// This calls fsFsSetArchiveBit on the filesystem specified by the input absolute path.
|
|
Result fsdevSetArchiveBit(const char *path);
|
|
|
|
/// Unmounts all devices and cleans up any resources used by the FS driver.
|
|
Result fsdevUnmountAll(void);
|