Advertisement
Guest User

Untitled

a guest
Jun 20th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.83 KB | None | 0 0
  1. /*
  2.      File:       Carbon.r
  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.  
  17. #ifndef __CARBON_R__
  18. #define __CARBON_R__
  19.  
  20. #ifndef __CORESERVICES_R__
  21. #include <CoreServices/CoreServices.r>
  22. #endif
  23.  
  24. #ifndef __APPLICATIONSERVICES_R__
  25. #include <ApplicationServices/ApplicationServices.r>
  26. #endif
  27.  
  28. #ifndef __HITOOLBOX_R__
  29. #include <HIToolbox/HIToolbox.r>
  30. #endif
  31.  
  32. #ifndef __CARBONSOUND_R__
  33. #include <CarbonSound/CarbonSound.r>
  34. #endif
  35.  
  36. #ifndef __OPENSCRIPTING_R__
  37. #include <OpenScripting/OpenScripting.r>
  38. #endif
  39.  
  40.  
  41. #endif /* __CARBON_R__ */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement