Advertisement
Guest User

Untitled

a guest
Jun 20th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.46 KB | None | 0 0
  1. /*
  2.      File:       Carbon/Carbon.h
  3.  
  4.      Contains:   Master include for all of Carbon
  5.  
  6.      Version:    Carbon-~1
  7.  
  8.      Copyright:  ? 2000-2008 by Apple Computer, Inc., all rights reserved.
  9.  
  10.      Bugs?:      For bug reports, consult the following page on
  11.                  the World Wide Web:
  12.  
  13.                      http://developer.apple.com/bugreporter/
  14.  
  15. */
  16. #ifndef __CARBON__
  17. #define __CARBON__
  18.  
  19. #ifndef __CORESERVICES__
  20. #include <CoreServices/CoreServices.h>
  21. #endif
  22.  
  23. #ifndef __APPLICATIONSERVICES__
  24. #include <ApplicationServices/ApplicationServices.h>
  25. #endif
  26.  
  27.  
  28. #ifndef __HITOOLBOX__
  29. #include <HIToolbox/HIToolbox.h>
  30. #endif
  31.  
  32. #if !__LP64__
  33. #ifndef __CARBONSOUND__
  34. #include <CarbonSound/CarbonSound.h>
  35. #endif
  36.  
  37. #endif  /* !__LP64__ */
  38.  
  39. #ifndef __OPENSCRIPTING__
  40. #include <OpenScripting/OpenScripting.h>
  41. #endif
  42.  
  43. #ifndef __PRINT__
  44. #include <Print/Print.h>
  45. #endif
  46.  
  47. #if !__LP64__
  48. #ifndef __NAVIGATIONSERVICES__
  49. #include <NavigationServices/NavigationServices.h>
  50. #endif
  51.  
  52. #endif  /* !__LP64__ */
  53.  
  54. #ifndef __COMMONPANELS__
  55. #include <CommonPanels/CommonPanels.h>
  56. #endif
  57.  
  58. #ifndef __SPEECHRECOGNITION__
  59. #include <SpeechRecognition/SpeechRecognition.h>
  60. #endif
  61.  
  62. #ifndef __SECURITYHI__
  63. #include <SecurityHI/SecurityHI.h>
  64. #endif
  65.  
  66. #ifndef __INK__
  67. #include <Ink/Ink.h>
  68. #endif
  69.  
  70. #ifndef __HELP__
  71. #include <Help/Help.h>
  72. #endif
  73.  
  74. #ifndef __IMAGECAPTURE__
  75. #include <ImageCapture/ImageCapture.h>
  76. #endif
  77.  
  78.  
  79.  
  80.  
  81.  
  82. #endif /* __CARBON__ */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement