diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /common/quicktime_win32/QuickTime.h | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'common/quicktime_win32/QuickTime.h')
| -rw-r--r-- | common/quicktime_win32/QuickTime.h | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/common/quicktime_win32/QuickTime.h b/common/quicktime_win32/QuickTime.h new file mode 100644 index 0000000..f512ba2 --- /dev/null +++ b/common/quicktime_win32/QuickTime.h @@ -0,0 +1,95 @@ +/* + 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__ */ + |