rpcsx/rpcs3/Emu/VFS.h
RipleyTom 0457f23b13 Pad Refactoring
Adds a window to setup multiple input types as once
All controllers are now handled by a single thread
[hcorion] evdev refactor
2017-09-09 00:55:03 +01:00

20 lines
292 B
C++

#pragma once
#include <string>
namespace vfs
{
// VFS type
enum class type
{
ps3,
psv,
};
// 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);
}