C++ has undefined behavior for identifiers starting with __ or with _ followed by an uppercase letter. We still have many more (in IrrCompileConfig.h and in all header-guards), will likely replace those later as well. As a workaround for users which might use irrlicht defines in their code, I've added the header irrLegacyDefines.h Including that allows to continue using old defines for a while - or make it easier to have code which compiles with old and new Irrlicht library versions. git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@6251 dfc29bdd-3216-0410-991c-e03cc46cb475
		
			
				
	
	
		
			77 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // Copyright (C) 2002-2012 Nikolaus Gebhardt
 | |
| // This file is part of the "Irrlicht Engine".
 | |
| // For conditions of distribution and use, see copyright notice in irrlicht.h
 | |
| 
 | |
| #ifndef __C_MEMORY_READ_WRITE_FILE_H_INCLUDED__
 | |
| #define __C_MEMORY_READ_WRITE_FILE_H_INCLUDED__
 | |
| 
 | |
| #include "IWriteFile.h"
 | |
| #include "IReadFile.h"
 | |
| #include "irrArray.h"
 | |
| #include "irrString.h"
 | |
| #include "memory.h"
 | |
| 
 | |
| namespace irr
 | |
| {
 | |
| namespace io
 | |
| {
 | |
| 
 | |
| 	//! Provides write access to an array as if it is a file.
 | |
| 	class CMemoryReadWriteFile : public virtual IWriteFile, public virtual IReadFile
 | |
| 	{
 | |
| 	public:
 | |
| 
 | |
| 		CMemoryReadWriteFile(const c8* filename=0);
 | |
| 
 | |
| 		//! Reads an amount of bytes from the file.
 | |
| 		//! \param buffer: Pointer to buffer of bytes to write.
 | |
| 		//! \param sizeToWrite: Amount of bytes to written to the file.
 | |
| 		//! \return Returns how much bytes were written.
 | |
| 		virtual size_t write(const void* buffer, size_t sizeToWrite);
 | |
| 
 | |
| 		//! Changes position in file, returns true if successful.
 | |
| 		//! \param finalPos: Destination position in the file.
 | |
| 		//! \param relativeMovement: If set to true, the position in the file is
 | |
| 		//! changed relative to current position. Otherwise the position is changed
 | |
| 		//! from begin of file.
 | |
| 		//! \return Returns true if successful, otherwise false.
 | |
| 		virtual bool seek(long finalPos, bool relativeMovement = false);
 | |
| 
 | |
| 		//! Returns size of file.
 | |
| 		//! \return Returns the size of the file in bytes.
 | |
| 		virtual long getSize() const;
 | |
| 
 | |
| 		//! Reads an amount of bytes from the file.
 | |
| 		//! \param buffer: Pointer to buffer where to read bytes will be written to.
 | |
| 		//! \param sizeToRead: Amount of bytes to read from the file.
 | |
| 		//! \return Returns how much bytes were read.
 | |
| 		virtual size_t read(void* buffer, size_t sizeToRead);
 | |
| 
 | |
| 		//! Returns the current position in the file.
 | |
| 		//! \return Returns the current position in the file in bytes.
 | |
| 		virtual long getPos() const;
 | |
| 
 | |
| 		//! Returns name of file.
 | |
| 		//! \return Returns the file name as zero terminated character string.
 | |
| 		virtual const io::path& getFileName() const;
 | |
| 
 | |
| 		//! Flush the content of the buffer in the file
 | |
| 		virtual bool flush() IRR_OVERRIDE;
 | |
| 
 | |
| 		//! Returns file data as an array
 | |
| 		core::array<c8>& getData();
 | |
| 
 | |
| 	private:
 | |
| 
 | |
| 		core::array<c8> Data;
 | |
| 		io::path FileName;
 | |
| 		long Pos;
 | |
| 	};
 | |
| 
 | |
| 
 | |
| 
 | |
| } // end namespace io
 | |
| } // end namespace irr
 | |
| 
 | |
| #endif // __C_MEMORY_READ_WRITE_FILE_H_INCLUDED__
 |