mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
- Improved sc function binder.
- Improved GLGSRender.
This commit is contained in:
parent
3bb7a299ca
commit
5753edf6ef
133 changed files with 13624 additions and 3898 deletions
24
rpcs3/Emu/FS/vfsFileBase.h
Normal file
24
rpcs3/Emu/FS/vfsFileBase.h
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
#pragma once
|
||||
#include "vfsDevice.h"
|
||||
|
||||
struct vfsFileBase : public vfsDevice
|
||||
{
|
||||
protected:
|
||||
wxString m_path;
|
||||
vfsOpenMode m_mode;
|
||||
|
||||
public:
|
||||
vfsFileBase();
|
||||
virtual ~vfsFileBase();
|
||||
|
||||
virtual bool Open(const wxString& path, vfsOpenMode mode);
|
||||
virtual bool Close();
|
||||
/*
|
||||
virtual bool Create(const wxString& path)=0;
|
||||
virtual bool Exists(const wxString& path)=0;
|
||||
virtual bool Rename(const wxString& from, const wxString& to)=0;
|
||||
virtual bool Remove(const wxString& path)=0;
|
||||
*/
|
||||
wxString GetPath() const;
|
||||
vfsOpenMode GetOpenMode() const;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue