1
0

Fixed bindings for cFile:ReadWholeFile().

Fixes #1914
This commit is contained in:
Mattes D
2015-04-30 11:44:42 +02:00
parent 4bf3b874e3
commit 8d4a87d2c4
2 changed files with 44 additions and 8 deletions

View File

@@ -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);