From c4fcd2b5783ccc6f9a158df632868f4b3da2832d Mon Sep 17 00:00:00 2001 From: Lars Persson Date: Sun, 7 Sep 2008 10:57:28 +0000 Subject: Remove symbian defines from stdiostream.cpp svn-id: r34399 --- backends/fs/stdiostream.cpp | 31 ------------------------------- 1 file changed, 31 deletions(-) (limited to 'backends') diff --git a/backends/fs/stdiostream.cpp b/backends/fs/stdiostream.cpp index 7faeaf1167..f3f20eacb5 100644 --- a/backends/fs/stdiostream.cpp +++ b/backends/fs/stdiostream.cpp @@ -106,37 +106,6 @@ #endif -#ifdef __SYMBIAN32__ - #undef feof - #undef clearerr - - #define FILE void - - FILE* symbian_fopen(const char* name, const char* mode); - void symbian_fclose(FILE* handle); - size_t symbian_fread(const void* ptr, size_t size, size_t numItems, FILE* handle); - size_t symbian_fwrite(const void* ptr, size_t size, size_t numItems, FILE* handle); - bool symbian_feof(FILE* handle); - 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) - #define fread(ptr, size, items, file) symbian_fread(ptr, size, items, file) - #define fwrite(ptr, size, items, file) symbian_fwrite(ptr, size, items, file) - #define feof(handle) symbian_feof(handle) - #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 - - StdioStream::StdioStream(void *handle) : _handle(handle) { assert(handle); } -- cgit v1.2.3