summaryrefslogtreecommitdiff
path: root/common/quicktime_win32/CFUUID.h
blob: e06d1dd30a23b26e36decf532cbde77ef64bcf2b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
     File:       CFUUID.h
 
     Contains:   CoreFoundation UUIDs
 
     Version:    QuickTime 7.3
 
     Copyright:  (c) 2007 (c) 1999-2001 by Apple Computer, Inc., all rights reserved
 
     Bugs?:      For bug reports, consult the following page on
                 the World Wide Web:
 
                     http://developer.apple.com/bugreporter/
 
*/
#ifndef __CFUUID__
#define __CFUUID__



#if PRAGMA_ONCE
#pragma once
#endif

#if PRAGMA_IMPORT
#pragma import on
#endif

#if PRAGMA_STRUCT_ALIGN
    #pragma options align=mac68k
#elif PRAGMA_STRUCT_PACKPUSH
    #pragma pack(push, 2)
#elif PRAGMA_STRUCT_PACK
    #pragma pack(2)
#endif

#include <CFBase.h>

typedef struct __CFUUID*                CFUUIDRef;
struct CFUUIDBytes {
  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;
};
typedef struct CFUUIDBytes              CFUUIDBytes;
/* The CFUUIDBytes struct is a 128-bit struct that contains the
raw UUID. A CFUUIDRef can provide such a struct from the
CFUUIDGetUUIDBytes() function. This struct is suitable for
passing to APIs that expect a raw UUID.
*/

#if PRAGMA_STRUCT_ALIGN
    #pragma options align=reset
#elif PRAGMA_STRUCT_PACKPUSH
    #pragma pack(pop)
#elif PRAGMA_STRUCT_PACK
    #pragma pack()
#endif

#ifdef PRAGMA_IMPORT_OFF
#pragma import off
#elif PRAGMA_IMPORT
#pragma import reset
#endif


#endif /* __CFUUID__ */