CFUUIDCreateWithBytes

Header: CFUUID.h Carbon status: Under Evaluation

Creates a CFUUID object using the specified raw UUID bytes.

CFUUIDRef CFUUIDCreateWithBytes (
    CFAllocatorRef alloc, 
    UInt8 byte0, 
    UInt8 byte1, 
    UInt8 byte2, 
    UInt8 byte3, 
    UInt8 byte4, 
    UInt8 byte5, 
    UInt8 byte6, 
    UInt8 byte7, 
    UInt8 byte8, 
    UInt8 byte9, 
    UInt8 byte10, 
    UInt8 byte11, 
    UInt8 byte12, 
    UInt8 byte13, 
    UInt8 byte14, 
    UInt8 byte15
);
Parameter descriptions
alloc

The memory allocator to use. Pass kCFAllocatorDefault to use the system allocator.

byte0
byte1
byte2
byte3
byte4
byte5
byte6
byte7
byte8
byte9
byte10
byte11
byte12
byte13
byte14
byte15
function result

The newly created CFUUID object.

DISCUSSION

If a CFUUID object of the same value has been previously created, the function will return the existing instance with its reference count bumped.

AVAILABILITY

Under evaluation for Carbon. Available in Carbon 1.1 and later when CarbonLib 1.1CarbonLib 1.1 or later is present.


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