mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
18 lines
280 B
C
18 lines
280 B
C
/**
|
|
* @file fs_dev.h
|
|
* @brief FS driver.
|
|
*/
|
|
#pragma once
|
|
|
|
//NOTE: This is currently not usable.
|
|
|
|
/// Initializes the FS driver.
|
|
Result fsdevInit(void);
|
|
|
|
/// Enable/disable copy in fsdev_write
|
|
void fsdevWriteSafe(bool enable);
|
|
|
|
/// Exits the FS driver.
|
|
Result fsdevExit(void);
|
|
|