mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
11 lines
168 B
C
11 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);
|
||
|
|
}
|