Saving to a zip
Saving to a zip
Is there a way to write to a zip file under irrlicht?
vitek a question please
zlib should then work as a .zip for irrlicht? meaning I can read zlib with addZipFileArchive
checking around I can't really see that irrlicht has a compressor for it
do I have to add the zlib header and include myself to gain access to a compressor or is the function just buried somewhere?
zlib should then work as a .zip for irrlicht? meaning I can read zlib with addZipFileArchive
checking around I can't really see that irrlicht has a compressor for it
do I have to add the zlib header and include myself to gain access to a compressor or is the function just buried somewhere?
I don't understand your question. zlib is a library for reading and writing zip files. The Irrlicht file system uses zlib internally to decompress files that are compressed inside a zip file.
As I mentioned in my original post, Irrlicht does not provide a way to write zip files. There is no 'compressor' provided for use with Irrlicht.
If you want to use the zlib library, you need to include the zlib.h and write your code to use it. The zlib library is compiled directly into the Irrlicht library, so you will need to either add your code to the Irrlicht.dll or to write your new code using the external zlib.
Travis
As I mentioned in my original post, Irrlicht does not provide a way to write zip files. There is no 'compressor' provided for use with Irrlicht.
If you want to use the zlib library, you need to include the zlib.h and write your code to use it. The zlib library is compiled directly into the Irrlicht library, so you will need to either add your code to the Irrlicht.dll or to write your new code using the external zlib.
Travis