Microsoft Internet Security and Acceleration Server 2004 SDK

IFWXIOBuffer::Append

The Append method appends a specified number of bytes of data to the buffer object.

HRESULT Append(
  void const* pv,
  ULONG cb,
  ULONG* pcbWritten
);

Parameters

pv
[in] Pointer to the buffer that is appended to the buffer object.
cb
[in] The number of bytes of data to attempt to append to the data in the buffer object.
pcbWritten
[out] Pointer to a ULONG that on return receives the actual number of bytes appended to the data in the buffer object.

Return Values

S_OK
The data was successfully appended to the buffer object.
FWX_E_BUFFERFULL
Not all the data was appended to the buffer object because the buffer is full.

Remarks

This method does not resize the buffer. The pcbWritten parameter is valid even if a FWX_E_BUFFERFULL error is returned.

Requirements

Server: Requires Windows Server 2003 or Windows 2000.
Version: Requires Internet Security and Acceleration Server 2004.
Header: Declared in Wspfwext.idl.

See Also

IFWXIOBuffer