From 1dec501ac7c170ff81410d3d2e913025c45cbbce Mon Sep 17 00:00:00 2001 From: Littleboy Date: Sat, 4 Jun 2011 14:26:37 -0400 Subject: BACKENDS: Implement Win32 version of OSystem::displayLogFile interface --- backends/platform/sdl/win32/win32.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'backends/platform/sdl/win32/win32.h') 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(); }; -- cgit v1.2.3