mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-06 20:21:44 +00:00
16 lines
308 B
C
16 lines
308 B
C
|
#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);
|
||
|
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
|