diff options
| author | Littleboy | 2011-06-04 14:26:37 -0400 |
|---|---|---|
| committer | Littleboy | 2011-06-04 14:27:20 -0400 |
| commit | 1dec501ac7c170ff81410d3d2e913025c45cbbce (patch) | |
| tree | 3a3590aad7ac4c80dcb20cfb6a30ced09ec349f5 /backends/platform/sdl/win32/win32.h | |
| parent | b766faa7a673fb1957123187ca71e46dda02ae6f (diff) | |
| download | scummvm-rg350-1dec501ac7c170ff81410d3d2e913025c45cbbce.tar.gz scummvm-rg350-1dec501ac7c170ff81410d3d2e913025c45cbbce.tar.bz2 scummvm-rg350-1dec501ac7c170ff81410d3d2e913025c45cbbce.zip | |
BACKENDS: Implement Win32 version of OSystem::displayLogFile interface
Diffstat (limited to 'backends/platform/sdl/win32/win32.h')
| -rw-r--r-- | backends/platform/sdl/win32/win32.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/backends/platform/sdl/win32/win32.h b/backends/platform/sdl/win32/win32.h index 268449eeff..ef7b6af3f1 100644 --- a/backends/platform/sdl/win32/win32.h +++ b/backends/platform/sdl/win32/win32.h @@ -30,7 +30,22 @@ public: virtual void init(); virtual void addSysArchivesToSearchSet(Common::SearchSet &s, int priority = 0); + + virtual bool hasFeature(Feature f); + + virtual bool displayLogFile(); + protected: + /** + * The path of the currently open log file, if any. + * + * @note This is currently a string and not an FSNode for simplicity; + * e.g. we don't need to include fs.h here, and currently the + * only use of this value is to use it to open the log file in an + * editor; for that, we need it only as a string anyway. + */ + Common::String _logFilePath; + virtual Common::String getDefaultConfigFileName(); virtual Common::WriteStream *createLogFile(); }; |
