49efcde301
CI / Build NRO (push) Successful in 29s
CI / Format check (push) Successful in 28s
CI / Layering check (push) Successful in 2s
CI / Build NRO (pull_request) Successful in 29s
CI / Format check (pull_request) Successful in 27s
CI / Layering check (pull_request) Successful in 1s
10 lines
249 B
C++
10 lines
249 B
C++
// Copyright (C) 2024-2026 NXST contributors
|
|
#pragma once
|
|
#include <switch.h>
|
|
|
|
namespace file_system {
|
|
Result mount(FsFileSystem* fs, u64 title_id, AccountUid uid);
|
|
int mount(FsFileSystem fs);
|
|
void unmount();
|
|
} // namespace file_system
|