aboutsummaryrefslogtreecommitdiff
path: root/common/system.h
diff options
context:
space:
mode:
authorNicola Mettifogo2008-07-30 16:06:46 +0000
committerNicola Mettifogo2008-07-30 16:06:46 +0000
commit55e4eb8d15e1cb9966963bdd5bf326db587e98fb (patch)
tree6a856cb10c00b4bf375fea309b3ad434c570d9e6 /common/system.h
parent9e4bc568619567d1e49a8928cec61c93a6b3d860 (diff)
downloadscummvm-rg350-55e4eb8d15e1cb9966963bdd5bf326db587e98fb.tar.gz
scummvm-rg350-55e4eb8d15e1cb9966963bdd5bf326db587e98fb.tar.bz2
scummvm-rg350-55e4eb8d15e1cb9966963bdd5bf326db587e98fb.zip
Fixed Win32 build, after Fingolfin's commits (probably because of the revert in revision 33456).
svn-id: r33458
Diffstat (limited to 'common/system.h')
-rw-r--r--common/system.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/common/system.h b/common/system.h
index b895a5cfba..6e432a4e5c 100644
--- a/common/system.h
+++ b/common/system.h
@@ -44,6 +44,8 @@ namespace Common {
class EventManager;
class SaveFileManager;
class TimerManager;
+ class SeekableReadStream;
+ class WriteStream;
}
class FilesystemFactory;
@@ -916,6 +918,10 @@ public:
return "";
}
//@}
+
+
+ Common::SeekableReadStream *openConfigFileForReading();
+ Common::WriteStream *openConfigFileForWriting();
};