< index
< 11. Compression toolkit
< 11.1 Creating a compression buffer

=====================================
11.2 Putting data in the buffer
=====================================

> 11.3 Saving the compressed data to a file
You can add data in the buffer by using one of those functions.

C++ : void TCODZip::putChar(char val)
C   : void TCOD_zip_put_char(TCOD_zip_t zip, char val)


ParameterDescription
zipIn the C version, the buffer handler, returned by the constructor.
valA 8 bits value to store in the buffer

C++ : void TCODZip::putInt(int val)
C   : void TCOD_zip_put_int(TCOD_zip_t zip, int val)


ParameterDescription
zipIn the C version, the buffer handler, returned by the constructor.
valAn integer value to store in the buffer

C++ : void TCODZip::putFloat(float val)
C   : void TCOD_zip_put_float(TCOD_zip_t zip, float val)


ParameterDescription
zipIn the C version, the buffer handler, returned by the constructor.
valA float value to store in the buffer

C++ : void TCODZip::putString(const char *val)
C   : void TCOD_zip_put_string(TCOD_zip_t zip, const char *val)


ParameterDescription
zipIn the C version, the buffer handler, returned by the constructor.
valA string to store in the buffer

C++ : void TCODZip::putData(int nbBytes, const void *data)
C   : void TCOD_zip_put_data(TCOD_zip_t zip, int nbBytes, const void *data)


ParameterDescription
zipIn the C version, the buffer handler, returned by the constructor.
nbBytesNumber of bytes to store in the buffer
valAddress of the data to store in the buffer

insert a comment