mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
Adds a window to setup multiple input types as once All controllers are now handled by a single thread [hcorion] evdev refactor
20 lines
292 B
C++
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);
|
|
}
|