mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-12-12 07:51:15 +01:00
4f50d412f5
In theory, one could mount an encrypted FAT partition itself coming from a disk image, etc.
16 lines
375 B
C
16 lines
375 B
C
#ifndef FUSEE_FS_DEV_H
|
|
#define FUSEE_FS_DEV_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include "device_partition.h"
|
|
|
|
int fsdev_mount_device(const char *name, const device_partition_t *devpart, bool initialize_immediately);
|
|
int fsdev_set_default_device(const char *name);
|
|
int fsdev_unmount_device(const char *name);
|
|
|
|
int fsdev_unmount_all(void);
|
|
|
|
#endif
|