rpcsx/rpcs3/Emu/VFS.h

20 lines
292 B
C
Raw Normal View History

2016-04-14 00:59:00 +02:00
#pragma once
#include <string>
2016-04-14 00:59:00 +02:00
namespace vfs
{
2016-06-02 17:16:01 +02:00
// VFS type
enum class type
{
ps3,
psv,
};
2016-04-14 00:59:00 +02:00
2016-06-02 17:16:01 +02:00
// Mount VFS device
bool mount(const std::string& dev_name, const std::string& path);
// Convert VFS path to fs path
std::string get(const std::string& vpath, type _type = type::ps3);
2016-04-14 00:59:00 +02:00
}