mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-02-08 23:57:05 +00:00
![Ryan Houdek](/assets/img/avatar_default.png)
Was causing unnecessary memory allocation churn when a FEXInterpreter was asking for the rootfs folder path.
10 lines
213 B
C++
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
|