mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-02 21:11:25 +12:00
15 lines
No EOL
411 B
C
15 lines
No EOL
411 B
C
#pragma once
|
|
#include "vfsDevice.h"
|
|
|
|
struct VFS
|
|
{
|
|
ArrayF<vfsDevice> m_devices;
|
|
|
|
void Mount(const wxString& ps3_path, const wxString& local_path, vfsDevice* device);
|
|
void UnMount(const wxString& ps3_path);
|
|
|
|
vfsStream* Open(const wxString& ps3_path, vfsOpenMode mode);
|
|
void Create(const wxString& ps3_path);
|
|
void Close(vfsStream*& device);
|
|
vfsDevice* GetDevice(const wxString& ps3_path, wxString& path);
|
|
}; |