blob: c108db77dce50b78509831f07d532dae719da6c2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#include <memory>
#include <string>
namespace WAVM { namespace VFS {
struct FileSystem;
WAVM_API std::shared_ptr<FileSystem> makeSandboxFS(FileSystem* innerFS,
const std::string& innerRootPath);
}}
|