blob: 094ed0e96ca54892454bc66488168cbb19a626cd (
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
/*
File: QD.h
Contains: Master include for QD private framework
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 __QD__
#define __QD__
#ifndef __CORESERVICES__
#include <CoreServices.h>
#endif
#ifndef __COREGRAPHICS__
#include <CoreGraphics.h>
#endif
#ifndef __COLORSYNC__
#include <ColorSync.h>
#endif
#ifndef __ATS__
#include <ATS.h>
#endif
#ifndef __AE__
#include <AE.h>
#endif
#ifndef __QUICKDRAW__
#include <Quickdraw.h>
#endif
#ifndef __QDOFFSCREEN__
#include <QDOffscreen.h>
#endif
#ifndef __QDPICTTOCGCONTEXT__
#include <QDPictToCGContext.h>
#endif
#ifndef __QUICKDRAWTEXT__
#include <QuickdrawText.h>
#endif
#ifndef __FONTS__
#include <Fonts.h>
#endif
#ifndef __PALETTES__
#include <Palettes.h>
#endif
#ifndef __PICTUTILS__
#include <PictUtils.h>
#endif
#ifndef __ATSUNICODE__
#include <ATSUnicode.h>
#endif
#ifndef __VIDEO__
#include <Video.h>
#endif
#ifndef __DISPLAYS__
#include <Displays.h>
#endif
#ifndef __FONTSYNC__
#include <FontSync.h>
#endif
#ifndef __ATSUNICODEFLATTENING__
#include <ATSUnicodeFlattening.h>
#endif
#ifndef __ATSUNICODEDIRECTACCESS__
#include <ATSUnicodeDirectAccess.h>
#endif
#endif /* __QD__ */
|