mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-26 15:49:50 -06:00
Upgrade WX to r74856, mainly to support @2x.
This commit is contained in:
14
Externals/wxWidgets3/include/wx/filesys.h
vendored
14
Externals/wxWidgets3/include/wx/filesys.h
vendored
@ -3,7 +3,6 @@
|
||||
// Purpose: class for opening files - virtual file system
|
||||
// Author: Vaclav Slavik
|
||||
// Copyright: (c) 1999 Vaclav Slavik
|
||||
// RCS-ID: $Id: filesys.h 58757 2009-02-08 11:45:59Z VZ $
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
@ -293,7 +292,20 @@ protected:
|
||||
static wxString ms_root;
|
||||
};
|
||||
|
||||
// Stream reading data from wxFSFile: this allows to use virtual files with any
|
||||
// wx functions accepting streams.
|
||||
class WXDLLIMPEXP_BASE wxFSInputStream : public wxWrapperInputStream
|
||||
{
|
||||
public:
|
||||
// Notice that wxFS_READ is implied in flags.
|
||||
wxFSInputStream(const wxString& filename, int flags = 0);
|
||||
virtual ~wxFSInputStream();
|
||||
|
||||
private:
|
||||
wxFSFile* m_file;
|
||||
|
||||
wxDECLARE_NO_COPY_CLASS(wxFSInputStream);
|
||||
};
|
||||
|
||||
#endif
|
||||
// wxUSE_FILESYSTEM
|
||||
|
Reference in New Issue
Block a user