]> gitweb @ CieloNegro.org - bindings-CoreFoundation.git/blob - cbits/helper_CFData.c
CFData.h
[bindings-CoreFoundation.git] / cbits / helper_CFData.c
1 #include <bindings.cmacros.h>
2 #include <CoreFoundation/CFData.h>
3
4 void
5 inline_CFDataGetBytes(CFDataRef theData, CFRange* range, UInt8 *buffer) {
6     return CFDataGetBytes(theData, *range, buffer);
7 }
8
9 void
10 inline_CFDataReplaceBytes(CFMutableDataRef theData,
11                           CFRange* range,
12                           const UInt8 *newBytes,
13                           CFIndex newLength) {
14     return CFDataReplaceBytes(theData, *range, newBytes, newLength);
15 }
16
17 void
18 inline_CFDataDeleteBytes(CFMutableDataRef theData, CFRange* range) {
19     return CFDataDeleteBytes(theData, *range);
20 }