mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-16 11:48:36 +12:00
10 lines
168 B
C++
10 lines
168 B
C++
#pragma once
|
|
|
|
namespace vfs
|
|
{
|
|
// Print mounted directories
|
|
void dump();
|
|
|
|
// Convert PS3/PSV path to fs-compatible path
|
|
std::string get(const std::string& vpath);
|
|
}
|