ByteArrayOutputStream_new

Creates a ByteArrayOutputStreamObject object with the passed initial buffer size and with the passed growIncrement.

Syntax

C++

 #include "InterfaceFactory.h"
 
 DIRXML_EXPORT 
 OutputStream * IFAPI ByteArrayOutputStream_new ( 
    int    initialSize,
    int    growIncrement);
 
 

Parameters

initialSize
(IN) Specifies the initial buffer size. To use the default value, set to zero.
growIncrement
(IN) Specifies the amount to grow the buffer when neede. To use the default value, set to zero.

Remarks

What are the defaults?