FEX/Source/Tools/FEXServer/SquashFS.h
Ryan Houdek 5099b2b5dc
FEXServer: Removes temporary variable allocation
Was causing unnecessary memory allocation churn when a FEXInterpreter
was asking for the rootfs folder path.
2024-05-05 14:11:26 -07:00

10 lines
213 B
C++

// SPDX-License-Identifier: MIT
#pragma once
#include <FEXCore/fextl/string.h>
namespace SquashFS {
bool InitializeSquashFS();
void UnmountRootFS();
const fextl::string& GetMountFolder();
} // namespace SquashFS