You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
1.5 KiB
96 lines
1.5 KiB
5 years ago
|
/*
|
||
|
File: QuickTime.h
|
||
|
|
||
|
Contains: Master include for all of QuickTime on OS X
|
||
|
|
||
|
Version: QuickTime 7.3
|
||
|
|
||
|
Copyright: (c) 2007 (c) 1999-2007 by Apple Inc., all rights reserved.
|
||
|
|
||
|
Bugs?: For bug reports, consult the following page on
|
||
|
the World Wide Web:
|
||
|
|
||
|
http://developer.apple.com/bugreporter/
|
||
|
|
||
|
*/
|
||
|
#ifndef __QUICKTIME__
|
||
|
#define __QUICKTIME__
|
||
|
|
||
|
#ifndef __CARBON__
|
||
|
#include <Carbon.h>
|
||
|
#endif
|
||
|
|
||
|
|
||
|
|
||
|
/* QuickTime is not available to 64-bit clients */
|
||
|
|
||
|
#if !__LP64__
|
||
|
|
||
|
#ifndef __QTML__
|
||
|
#include <QTML.h>
|
||
|
#endif
|
||
|
|
||
|
#ifndef __MEDIAHANDLERS__
|
||
|
#include <MediaHandlers.h>
|
||
|
#endif
|
||
|
|
||
|
#ifndef __MOVIES__
|
||
|
#include <Movies.h>
|
||
|
#endif
|
||
|
|
||
|
#ifndef __MOVIESFORMAT__
|
||
|
#include <MoviesFormat.h>
|
||
|
#endif
|
||
|
|
||
|
#ifndef __QUICKTIMEVR__
|
||
|
#include <QuickTimeVR.h>
|
||
|
#endif
|
||
|
|
||
|
#ifndef __QUICKTIMEVRFORMAT__
|
||
|
#include <QuickTimeVRFormat.h>
|
||
|
#endif
|
||
|
|
||
|
#ifndef __IMAGECOMPRESSION__
|
||
|
#include <ImageCompression.h>
|
||
|
#endif
|
||
|
|
||
|
#ifndef __IMAGECODEC__
|
||
|
#include <ImageCodec.h>
|
||
|
#endif
|
||
|
|
||
|
#ifndef __QUICKTIMEMUSIC__
|
||
|
#include <QuickTimeMusic.h>
|
||
|
#endif
|
||
|
|
||
|
#ifndef __QUICKTIMECOMPONENTS__
|
||
|
#include <QuickTimeComponents.h>
|
||
|
#endif
|
||
|
|
||
|
#ifndef __QUICKTIMESTREAMING__
|
||
|
#include <QuickTimeStreaming.h>
|
||
|
#endif
|
||
|
|
||
|
#ifndef __QTSMOVIE__
|
||
|
#include <QTSMovie.h>
|
||
|
#endif
|
||
|
|
||
|
#ifndef __QTSTREAMINGCOMPONENTS__
|
||
|
#include <QTStreamingComponents.h>
|
||
|
#endif
|
||
|
|
||
|
#ifndef __QUICKTIMEERRORS__
|
||
|
#include <QuickTimeErrors.h>
|
||
|
#endif
|
||
|
|
||
|
#ifndef __HIMOVIEVIEW__
|
||
|
#include <HIMovieView.h>
|
||
|
#endif
|
||
|
|
||
|
|
||
|
|
||
|
#endif // !__LP64__
|
||
|
|
||
|
|
||
|
#endif /* __QUICKTIME__ */
|
||
|
|