diff options
Diffstat (limited to 'common/file.cpp')
| -rw-r--r-- | common/file.cpp | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/common/file.cpp b/common/file.cpp index cc9ae01baf..5c0668e06f 100644 --- a/common/file.cpp +++ b/common/file.cpp @@ -122,7 +122,8 @@  	long int symbian_ftell(FILE* handle);  	int		symbian_fseek(FILE* handle, long int offset, int whence);  	void	symbian_clearerr(FILE* handle); - +	void	symbian_fflush(FILE* handle); +	int     symbian_ferror(FILE* handle);  	// Only functions used in the ScummVM source have been defined here!  	#define fopen(name, mode)					symbian_fopen(name, mode)  	#define fclose(handle)						symbian_fclose(handle) @@ -132,6 +133,8 @@  	#define ftell(handle)						symbian_ftell(handle)  	#define fseek(handle, offset, whence)		symbian_fseek(handle, offset, whence)  	#define clearerr(handle)					symbian_clearerr(handle) +    #define fflush(handle)					    symbian_fflush(handle) +	#define ferror(handle)					    symbian_ferror(handle)  #endif  namespace Common { | 
