Packer::WriteArray
Defined in: C4Packing.h
Writes an array of data to the output stream.
Prototype
template <typename type> void WriteArray(long count, const type *array);
Description
The WriteArray function writes count items of the type given by the type template parameter to the output stream, reading them from memory starting at the pointer specified by the array parameter.
|