Function CSPBuffer::Add()
Description:
Appends data at the end of the buffer's content.
 |
Prototype:
void Add(const unsigned char* pData, unsigned long ulSize);
Arguments:
- const unsigned char* pData [IN]
The pointer to the data to be added.
- unsigned long ulSize [IN]
The size of the data, in bytes, to be added.
Return value:
No return value (void).
Remarks:
Use this function with caution, since an improper pointer or improper size may be fatal. The buffer will appropriately grow to fit the added data.
See also:
member functions Add(), operator += ()
|
|