27#ifndef __COREFOUNDATION_CFUUID_H__
28#define __COREFOUNDATION_CFUUID_H__
30#include <CoreFoundation/CFBase.h>
36typedef const struct __CFUUID *CFUUIDRef;
70CFUUIDCreateWithBytes (
CFAllocatorRef alloc, UInt8 byte0, UInt8 byte1,
71 UInt8 byte2, UInt8 byte3, UInt8 byte4, UInt8 byte5,
72 UInt8 byte6, UInt8 byte7, UInt8 byte8, UInt8 byte9,
73 UInt8 byte10, UInt8 byte11, UInt8 byte12, UInt8 byte13,
74 UInt8 byte14, UInt8 byte15);
80CF_EXPORT CFStringRef CFUUIDCreateString (
CFAllocatorRef alloc, CFUUIDRef uuid);
83CFUUIDGetConstantUUIDWithBytes (
CFAllocatorRef alloc, UInt8 byte0, UInt8 byte1,
84 UInt8 byte2, UInt8 byte3, UInt8 byte4,
85 UInt8 byte5, UInt8 byte6, UInt8 byte7,
86 UInt8 byte8, UInt8 byte9, UInt8 byte10,
87 UInt8 byte11, UInt8 byte12, UInt8 byte13,
88 UInt8 byte14, UInt8 byte15);
90CF_EXPORT
CFUUIDBytes CFUUIDGetUUIDBytes (CFUUIDRef uuid);
96CF_EXPORT CFTypeID CFUUIDGetTypeID (
void);
const struct __CFAllocator * CFAllocatorRef
A reference to a CFAllocator object.
Definition CFBase.h:301