CFDataAppendBytes

Header: CFData.h Carbon status: Supported

Appends the bytes from a byte buffer to the contents of a CFData object.

void CFDataAppendBytes (
    CFMutableDataRef data, 
    const UInt8 *bytes, 
    CFIndex length
);
Parameter descriptions
data

Pass a reference to a mutable CFData object. References to immutable CFData objects will cause indeterminate behavior.

bytes

Pass a pointer to the buffer of bytes to be added to the CFData object.

length

Specify the number of bytes in the byte buffer bytes.

AVAILABILITY

Supported in Carbon. Available in Carbon 1.0.2 and later.


© 2000 Apple Computer, Inc. (Last Updated 6/30/2000)