diff options
author | Mattes D <github@xoft.cz> | 2015-04-30 12:57:17 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-04-30 12:57:17 +0200 |
commit | 46bb4788cf7e86e79d240faa62b62e1e9414b47f (patch) | |
tree | ec9c468263af0f1dfd9ea7564b0260ad020a3c3b /src/OSSupport | |
parent | Merge pull request #1922 from mc-server/BlockAreaExt (diff) | |
parent | Fixed bindings for cFile:ReadWholeFile(). (diff) | |
download | cuberite-46bb4788cf7e86e79d240faa62b62e1e9414b47f.tar cuberite-46bb4788cf7e86e79d240faa62b62e1e9414b47f.tar.gz cuberite-46bb4788cf7e86e79d240faa62b62e1e9414b47f.tar.bz2 cuberite-46bb4788cf7e86e79d240faa62b62e1e9414b47f.tar.lz cuberite-46bb4788cf7e86e79d240faa62b62e1e9414b47f.tar.xz cuberite-46bb4788cf7e86e79d240faa62b62e1e9414b47f.tar.zst cuberite-46bb4788cf7e86e79d240faa62b62e1e9414b47f.zip |
Diffstat (limited to 'src/OSSupport')
-rw-r--r-- | src/OSSupport/File.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/OSSupport/File.h b/src/OSSupport/File.h index 6ee080480..dc6543180 100644 --- a/src/OSSupport/File.h +++ b/src/OSSupport/File.h @@ -124,9 +124,14 @@ public: /** Creates a new folder with the specified name. Returns true if successful. Path may be relative or absolute */ static bool CreateFolder(const AString & a_FolderPath); - /** Returns the entire contents of the specified file as a string. Returns empty string on error. */ + // tolua_end + + /** Returns the entire contents of the specified file as a string. Returns empty string on error. + Exported manually in ManualBindings.cpp due to #1914 - ToLua code doesn't work well with binary files. */ static AString ReadWholeFile(const AString & a_FileName); + // tolua_begin + /** Returns a_FileName with its extension changed to a_NewExt. a_FileName may contain path specification. */ static AString ChangeFileExt(const AString & a_FileName, const AString & a_NewExt); |