mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-18 21:07:23 +01:00
4f50d412f5
In theory, one could mount an encrypted FAT partition itself coming from a disk image, etc.
17 lines
357 B
C
17 lines
357 B
C
#ifndef FUSEE_RAW_DEV_H
|
|
#define FUSEE_RAW_DEV_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include "device_partition.h"
|
|
|
|
#define RAWDEV_MAX_DEVICES 16
|
|
|
|
int rawdev_mount_device(const char *name, const device_partition_t *device, bool mount_immediately);
|
|
|
|
int rawdev_unmount_device(const char *name);
|
|
int rawdev_unmount_all(void);
|
|
|
|
#endif
|