diff options
Diffstat (limited to 'common/quicktime_win32/QD.h')
| -rw-r--r-- | common/quicktime_win32/QD.h | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/common/quicktime_win32/QD.h b/common/quicktime_win32/QD.h new file mode 100644 index 0000000..094ed0e --- /dev/null +++ b/common/quicktime_win32/QD.h @@ -0,0 +1,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__ */ + |