#include #include void inline_CFDataGetBytes(CFDataRef theData, CFRange* range, UInt8 *buffer) { return CFDataGetBytes(theData, *range, buffer); } void inline_CFDataReplaceBytes(CFMutableDataRef theData, CFRange* range, const UInt8 *newBytes, CFIndex newLength) { return CFDataReplaceBytes(theData, *range, newBytes, newLength); } void inline_CFDataDeleteBytes(CFMutableDataRef theData, CFRange* range) { return CFDataDeleteBytes(theData, *range); }