@@ -41,11 +41,16 @@ * * @brief A class which provides methods to read and write files. */ @interface OFFile: OFSeekableStream { - int _fd; +#if !defined(OF_MORPHOS) || defined(OF_IXEMUL) + int _fd; +#else + long _fd; + bool _append; +#endif bool _atEndOfStream; } /*! * @brief Creates a new OFFile with the specified path and mode.