Newer
Older
Atmosphere / fusee / fusee-secondary / src / fs_dev.h
@TuxSH TuxSH on 6 May 2018 325 bytes Rework fs_dev mount code
#ifndef FUSEE_FS_DEV_H
#define FUSEE_FS_DEV_H

#include <stddef.h>
#include <stdint.h>
#include <stdbool.h>

int fsdev_mount_device(const char *name, unsigned int id);
int fsdev_set_default_device(const char *name);
int fsdev_unmount_device(const char *name);

int fsdev_mount_all(void);
int fsdev_unmount_all(void);

#endif