sprsquish (owner)

Revisions

gist: 187484 Download_button fork
public
Public Clone URL: git://gist.github.com/187484.git
Embed All Files: show embed
C #
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
/*
File: QuickTime/QuickTime.h
Contains: Master include for all of QuickTime on OS X
Version: QuickTime 7.6.3
Copyright: © 1999-2008 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/Carbon.h>
#endif
 
 
 
/* QuickTime is not available to 64-bit clients */
 
#ifndef __QTML__
#include <QuickTime/QTML.h>
#endif
 
#ifndef __MEDIAHANDLERS__
#include <QuickTime/MediaHandlers.h>
#endif
 
#ifndef __MOVIES__
#include <QuickTime/Movies.h>
#endif
 
#ifndef __MOVIESFORMAT__
#include <QuickTime/MoviesFormat.h>
#endif
 
#ifndef __QUICKTIMEVR__
#include <QuickTime/QuickTimeVR.h>
#endif
 
#ifndef __QUICKTIMEVRFORMAT__
#include <QuickTime/QuickTimeVRFormat.h>
#endif
 
#ifndef __IMAGECOMPRESSION__
#include <QuickTime/ImageCompression.h>
#endif
 
#ifndef __IMAGECODEC__
#include <QuickTime/ImageCodec.h>
#endif
 
#ifndef __QUICKTIMEMUSIC__
#include <QuickTime/QuickTimeMusic.h>
#endif
 
#ifndef __QUICKTIMECOMPONENTS__
#include <QuickTime/QuickTimeComponents.h>
#endif
 
#ifndef __QUICKTIMESTREAMING__
#include <QuickTime/QuickTimeStreaming.h>
#endif
 
#ifndef __QTSMOVIE__
#include <QuickTime/QTSMovie.h>
#endif
 
#ifndef __QTSTREAMINGCOMPONENTS__
#include <QuickTime/QTStreamingComponents.h>
#endif
 
#ifndef __QUICKTIMEERRORS__
#include <QuickTime/QuickTimeErrors.h>
#endif
 
#ifndef __HIMOVIEVIEW__
#include <QuickTime/HIMovieView.h>
#endif
 
 
#endif /* __QUICKTIME__ */