10 lines
297 B
C++
10 lines
297 B
C++
#pragma once
|
|
|
|
#include <filesystem>
|
|
#include <string>
|
|
|
|
bool InitPhysFSTest(const std::filesystem::path& writeDir);
|
|
bool MountPhysFSTest(const std::filesystem::path& realPath, const std::string& mountPoint);
|
|
bool UnmountPhysFSTest(const std::filesystem::path& realPath);
|
|
void ShutdownPhysFSTest();
|