Team Fortress 2 Source Code as on 22/4/2020
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.

95 lines
1.5 KiB

  1. /*
  2. File: QuickTime.h
  3. Contains: Master include for all of QuickTime on OS X
  4. Version: QuickTime 7.3
  5. Copyright: (c) 2007 (c) 1999-2007 by Apple Inc., all rights reserved.
  6. Bugs?: For bug reports, consult the following page on
  7. the World Wide Web:
  8. http://developer.apple.com/bugreporter/
  9. */
  10. #ifndef __QUICKTIME__
  11. #define __QUICKTIME__
  12. #ifndef __CARBON__
  13. #include <Carbon.h>
  14. #endif
  15. /* QuickTime is not available to 64-bit clients */
  16. #if !__LP64__
  17. #ifndef __QTML__
  18. #include <QTML.h>
  19. #endif
  20. #ifndef __MEDIAHANDLERS__
  21. #include <MediaHandlers.h>
  22. #endif
  23. #ifndef __MOVIES__
  24. #include <Movies.h>
  25. #endif
  26. #ifndef __MOVIESFORMAT__
  27. #include <MoviesFormat.h>
  28. #endif
  29. #ifndef __QUICKTIMEVR__
  30. #include <QuickTimeVR.h>
  31. #endif
  32. #ifndef __QUICKTIMEVRFORMAT__
  33. #include <QuickTimeVRFormat.h>
  34. #endif
  35. #ifndef __IMAGECOMPRESSION__
  36. #include <ImageCompression.h>
  37. #endif
  38. #ifndef __IMAGECODEC__
  39. #include <ImageCodec.h>
  40. #endif
  41. #ifndef __QUICKTIMEMUSIC__
  42. #include <QuickTimeMusic.h>
  43. #endif
  44. #ifndef __QUICKTIMECOMPONENTS__
  45. #include <QuickTimeComponents.h>
  46. #endif
  47. #ifndef __QUICKTIMESTREAMING__
  48. #include <QuickTimeStreaming.h>
  49. #endif
  50. #ifndef __QTSMOVIE__
  51. #include <QTSMovie.h>
  52. #endif
  53. #ifndef __QTSTREAMINGCOMPONENTS__
  54. #include <QTStreamingComponents.h>
  55. #endif
  56. #ifndef __QUICKTIMEERRORS__
  57. #include <QuickTimeErrors.h>
  58. #endif
  59. #ifndef __HIMOVIEVIEW__
  60. #include <HIMovieView.h>
  61. #endif
  62. #endif // !__LP64__
  63. #endif /* __QUICKTIME__ */