Function CSPBuffer::Get()
Description:
Retrieves a byte by index.
 |
Prototype:
unsigned char& Get(unsigned long ulIndex) const;
Arguments:
- unsigned long ulIndex [IN]
The index of the byte to retrieve.
Return value:
Returns a reference to the selected byte.
Examples:
CSPBuffer Buffer; ... unsigned char Value = Buffer.Get( 10 ); Buffer.Get(11) = 0;
See also:
member function Set()
|
|